MainWindow.xaml 1.4 KB

12345678910111213141516171819202122232425262728293031
  1. <Window x:Class="friaLabbar.MainWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:friaLabbar"
  7. mc:Ignorable="d"
  8. Title="This is the text in the title" Height="450" Width="800">
  9. <Grid>
  10. <Grid.ColumnDefinitions>
  11. <ColumnDefinition Width="20" />
  12. <ColumnDefinition Width="auto" />
  13. <ColumnDefinition Width="auto" />
  14. <ColumnDefinition Width="auto" />
  15. <ColumnDefinition Width="auto" />
  16. <ColumnDefinition Width="*" />
  17. <ColumnDefinition Width="20" />
  18. </Grid.ColumnDefinitions>
  19. <Grid.RowDefinitions>
  20. <RowDefinition Height="20" />
  21. <RowDefinition Height="auto" />
  22. <RowDefinition Height="auto" />
  23. <RowDefinition Height="auto" />
  24. <RowDefinition Height="auto" />
  25. <RowDefinition Height="*" />
  26. <RowDefinition Height="20" />
  27. </Grid.RowDefinitions>
  28. <TextBlock Grid.Column="1" Grid.Row="1" Grid.ColumnSpan="4" FontSize="36" Text="Dude!" />
  29. <TextBox x:Name="txtNameInput" Grid.Column="2" Grid.Row="2" Text="Default" Width="150" />
  30. </Grid>
  31. </Window>