first edit
This commit is contained in:
8
XLIMS.TPRZ/Views/MainView.xaml
Normal file
8
XLIMS.TPRZ/Views/MainView.xaml
Normal file
@@ -0,0 +1,8 @@
|
||||
<UserControl x:Class="XLIMS.TPRZ.Views.MainView"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
>
|
||||
<Grid>
|
||||
<TextBlock Text="{Binding Title}"/>
|
||||
</Grid>
|
||||
</UserControl>
|
||||
26
XLIMS.TPRZ/Views/MainView.xaml.cs
Normal file
26
XLIMS.TPRZ/Views/MainView.xaml.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.Windows;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Navigation;
|
||||
using System.Windows.Shapes;
|
||||
|
||||
namespace XLIMS.TPRZ.Views
|
||||
{
|
||||
/// <summary>
|
||||
/// Логика взаимодействия для MainView.xaml
|
||||
/// </summary>
|
||||
public partial class MainView : UserControl
|
||||
{
|
||||
public MainView()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
||||
}
|
||||
16
XLIMS.TPRZ/Views/TipView.xaml
Normal file
16
XLIMS.TPRZ/Views/TipView.xaml
Normal file
@@ -0,0 +1,16 @@
|
||||
<UserControl x:Class="XLIMS.TPRZ.Views.TipView"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
>
|
||||
<Grid>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="auto"/>
|
||||
<RowDefinition Height="auto"/>
|
||||
</Grid.RowDefinitions>
|
||||
|
||||
<ComboBox ItemsSource="{Binding AllSpnmtps}"
|
||||
SelectedItem="{Binding CurrentSpnmtp,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}"
|
||||
DisplayMemberPath="Nmtp" Grid.Row="0" Margin="3"/>
|
||||
<TextBox Text="{Binding Tp,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}" Grid.Row="1" Margin="3"/>
|
||||
</Grid>
|
||||
</UserControl>
|
||||
26
XLIMS.TPRZ/Views/TipView.xaml.cs
Normal file
26
XLIMS.TPRZ/Views/TipView.xaml.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.Windows;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Navigation;
|
||||
using System.Windows.Shapes;
|
||||
|
||||
namespace XLIMS.TPRZ.Views
|
||||
{
|
||||
/// <summary>
|
||||
/// Логика взаимодействия для TipView.xaml
|
||||
/// </summary>
|
||||
public partial class TipView : UserControl
|
||||
{
|
||||
public TipView()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
||||
}
|
||||
8
XLIMS.TPRZ/Views/TprzView.xaml
Normal file
8
XLIMS.TPRZ/Views/TprzView.xaml
Normal file
@@ -0,0 +1,8 @@
|
||||
<UserControl x:Class="XLIMS.TPRZ.Views.TprzView"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
>
|
||||
<Grid>
|
||||
<TextBox Text="{Binding Dpzn,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}"/>
|
||||
</Grid>
|
||||
</UserControl>
|
||||
26
XLIMS.TPRZ/Views/TprzView.xaml.cs
Normal file
26
XLIMS.TPRZ/Views/TprzView.xaml.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.Windows;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Navigation;
|
||||
using System.Windows.Shapes;
|
||||
|
||||
namespace XLIMS.TPRZ.Views
|
||||
{
|
||||
/// <summary>
|
||||
/// Логика взаимодействия для TprzView.xaml
|
||||
/// </summary>
|
||||
public partial class TprzView : UserControl
|
||||
{
|
||||
public TprzView()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user