| 12345678910111213141516171819202122232425262728293031 |
- <Window x:Class="friaLabbar.MainWindow"
- 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:friaLabbar"
- mc:Ignorable="d"
- Title="This is the text in the title" Height="450" Width="800">
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="20" />
- <ColumnDefinition Width="auto" />
- <ColumnDefinition Width="auto" />
- <ColumnDefinition Width="auto" />
- <ColumnDefinition Width="auto" />
- <ColumnDefinition Width="*" />
- <ColumnDefinition Width="20" />
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition Height="20" />
- <RowDefinition Height="auto" />
- <RowDefinition Height="auto" />
- <RowDefinition Height="auto" />
- <RowDefinition Height="auto" />
- <RowDefinition Height="*" />
- <RowDefinition Height="20" />
- </Grid.RowDefinitions>
- <TextBlock Grid.Column="1" Grid.Row="1" Grid.ColumnSpan="4" FontSize="36" Text="Dude!" />
- <TextBox x:Name="txtNameInput" Grid.Column="2" Grid.Row="2" Text="Default" Width="150" />
- </Grid>
- </Window>
|