-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGridTest.xml
More file actions
21 lines (21 loc) · 1.02 KB
/
GridTest.xml
File metadata and controls
21 lines (21 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<my:Window Name="GridWindow" Title="Очень длинное название окна"
xmlns:x="http://consoleframework.org/xaml.xsd"
xmlns:my="clr-namespace:ConsoleFramework.Controls;assembly=ConsoleFramework"
xmlns:converters="clr-namespace:Binding.Converters;assembly=Binding"
xmlns:xaml="clr-namespace:ConsoleFramework.Xaml;assembly=ConsoleFramework"
MinWidth="10" MinHeight="10" >
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="15"></ColumnDefinition>
<ColumnDefinition Width="*"></ColumnDefinition>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<TextBox HorizontalAlignment="Center" MaxWidth="10" Text="Text"></TextBox>
<TextBox HorizontalAlignment="Stretch" Text="Text"></TextBox>
<CheckBox></CheckBox>
<Button Margin="1" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" Caption="Long Button"></Button>
</Grid>
</my:Window>