Blame view
sources/RoboforkApp/View/AddNodeView.xaml
1.53 KB
01c8c8f49
|
1 2 3 |
<Window x:Class="RoboforkApp.View.AddNodeView" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
80ae927f4
|
4 |
Title="Add New Node" Height="150" Width="260" ResizeMode="NoResize" |
01c8c8f49
|
5 6 7 8 9 10 11 12 13 |
WindowStartupLocation="CenterScreen"> <Grid> <Grid.RowDefinitions> <RowDefinition Height="1*"/> <RowDefinition Height="1*"/> <RowDefinition Height="1*"/> <RowDefinition Height="0.3*"/> </Grid.RowDefinitions> <Grid.ColumnDefinitions> |
80ae927f4
|
14 |
<ColumnDefinition Width="1.6*"/> |
01c8c8f49
|
15 16 17 |
<ColumnDefinition Width="0.5*"/> <ColumnDefinition Width="2*"/> </Grid.ColumnDefinitions> |
80ae927f4
|
18 19 20 |
<Label Content="Do You Want To Add This Node?" Grid.ColumnSpan="3" FontSize="14" Margin="10,0,0,0"/> <Label Grid.Row="1" Grid.Column="0" Content="Name Node" FontSize="14" Margin="10,0,0,0"/> <TextBox Grid.Row="1" Grid.Column="1" Grid.ColumnSpan="2" Name="txtNamNode" FontSize="14" MaxLength="16" TabIndex="0" Margin="5,5,10,5" VerticalContentAlignment="Center"/> |
01c8c8f49
|
21 22 |
<Button Grid.Row="2" Grid.Column="0" Grid.ColumnSpan="2" Name="btnAddNode" Tag="AddNode" Margin="10,10,5,0" Click="btnAddNode_Click"> |
80ae927f4
|
23 |
<TextBlock Text="OK" FontSize="14"/> |
01c8c8f49
|
24 25 |
</Button> <Button Grid.Row="2" Grid.Column="2" Name="btnCancel" Tag="AddNode" Margin="5,10,10,0" Click="btnCancel_Click"> |
80ae927f4
|
26 |
<TextBlock Text="Cancel" FontSize="14"/> |
01c8c8f49
|
27 28 29 |
</Button> </Grid> </Window> |