43 lines
1.4 KiB
XML
43 lines
1.4 KiB
XML
<Window
|
||
x:Class="XLIMS.TPRZ.Windows.EditWindow"
|
||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
Title="{Binding Title}"
|
||
DataContext="{Binding}"
|
||
ShowInTaskbar="True"
|
||
SizeToContent="WidthAndHeight"
|
||
ResizeMode="NoResize"
|
||
WindowStartupLocation="CenterScreen"
|
||
WindowStyle="ToolWindow">
|
||
<Window.Resources>
|
||
<ResourceDictionary>
|
||
<ResourceDictionary.MergedDictionaries>
|
||
<ResourceDictionary Source="../Resources/CoreDictionary.xaml" />
|
||
</ResourceDictionary.MergedDictionaries>
|
||
</ResourceDictionary>
|
||
</Window.Resources>
|
||
<DockPanel LastChildFill="True">
|
||
<DockPanel
|
||
Margin="10"
|
||
DockPanel.Dock="Bottom"
|
||
LastChildFill="False">
|
||
<Button
|
||
Width="85"
|
||
Click="Button_Click_1"
|
||
Command="{Binding CancelCommand}"
|
||
Content="Отмена"
|
||
DockPanel.Dock="Right"
|
||
IsCancel="True" />
|
||
<Button
|
||
Width="85"
|
||
Margin="0,0,10,0"
|
||
Click="Button_Click_2"
|
||
Command="{Binding SaveCommand}"
|
||
Content="ОК"
|
||
DockPanel.Dock="Right"
|
||
IsDefault="True" />
|
||
</DockPanel>
|
||
<ContentControl Content="{Binding}" />
|
||
</DockPanel>
|
||
</Window>
|