-
Notifications
You must be signed in to change notification settings - Fork 1
/
DialogWindowPropertiesEthernetControl.xaml
20 lines (20 loc) · 1.48 KB
/
DialogWindowPropertiesEthernetControl.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Window x:Class="SCADA.DialogWindowPropertiesEthernetControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Свойства EthernetControl" Height="Auto" Width="Auto" ShowInTaskbar="False" WindowStartupLocation="CenterScreen" FontSize="16" Loaded="WindowLoaded" SizeToContent="WidthAndHeight" ResizeMode="NoResize">
<Grid Name="PropertiesGrid">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="Auto"/>
</Grid.ColumnDefinitions>
<TreeView x:Name="TreeViewProperties" Margin="0" Grid.RowSpan="2" SelectedItemChanged="TreeViewProperties_SelectedItemChanged" FocusManager.IsFocusScope="True">
<TreeViewItem x:Name="TreeViewItemGeneral" Header="Общие"/>
</TreeView>
<Button Content="Применить" Grid.Column="1" HorizontalAlignment="Left" Margin="10,10,0,0" Grid.Row="1" VerticalAlignment="Top" Width="90" IsDefault="True" Click="Apply" ToolTip="Применить изменения и закрыть"/>
<Button Name="ButtonCloseWindow" Content="Закрыть" Grid.Column="1" HorizontalAlignment="Left" Margin="171,10,0,0" Grid.Row="1" VerticalAlignment="Top" Width="75" Click="Close"/>
</Grid>
</Window>