-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathChooseNewAssetTypeDialog.xaml
25 lines (24 loc) · 1.25 KB
/
ChooseNewAssetTypeDialog.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<Window x:Class="AutomationISE.ChooseNewAssetTypeDialog"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Choose Asset Type" Width="300" Height="180" WindowStartupLocation="CenterScreen">
<Grid Name="ParametersGrid" Margin="15">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Label>Name</Label>
<TextBox x:Name="assetName" Margin="10,10,10,0" Grid.Column="1" />
<Label Grid.Row="1">Type</Label>
<ComboBox x:Name="assetTypeComboBox" Margin="10,10,10,0" Grid.Row="1" Grid.Column="1" />
<WrapPanel Grid.Row="2" Name="ButtonsPanel" Grid.ColumnSpan="2" HorizontalAlignment="Center" Margin="0,15,0,0">
<Button Click="OkButton_Click" IsDefault="True" Name="OkButton" MinWidth="60" Margin="0,0,10,0">OK</Button>
<Button IsCancel="True" MinWidth="60">Cancel</Button>
</WrapPanel>
</Grid>
</Window>