-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStringDialog.xaml
More file actions
18 lines (18 loc) · 1.3 KB
/
StringDialog.xaml
File metadata and controls
18 lines (18 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<Window x:Name="stringDialogWindow" x:Class="Matrix_Elementary.StringDialog"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:Matrix_Elementary"
mc:Ignorable="d"
Title="StringDialog" Height="150" Width="200" ResizeMode="NoResize" Closing="Window_Closing" PreviewKeyUp="Window_PreviewKeyUp" Icon="images/ico_white.ico">
<Window.Resources>
<Style TargetType="Button" x:Name="DefaultButton"/>
<Style TargetType="TextBox" x:Name="DefaultTextBox"/>
</Window.Resources>
<Grid>
<Label x:Name="label1" Content="StringDialog:" HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top" FontSize="14"/>
<TextBox x:Name="textBox1" HorizontalAlignment="Left" Height="24" Margin="17,45,0,0" TextWrapping="Wrap" Text="1" VerticalAlignment="Top" Width="152" FontSize="16"/>
<Button x:Name="buttonOK" Content="OK" Margin="0,0,7.6,7.8" Click="Button_Click" IsDefault="True" HorizontalAlignment="Right" Width="53" Height="19" VerticalAlignment="Bottom"/>
</Grid>
</Window>