WinPath.xaml 1.0 KB

12345678910111213141516171819202122232425
  1. <Window x:Class="Test.PathInfo.WinPath"
  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:Test.PathInfo"
  7. mc:Ignorable="d"
  8. Title="WinPath" Height="450" Width="800">
  9. <Grid>
  10. <Grid.ColumnDefinitions>
  11. <ColumnDefinition Width="Auto"></ColumnDefinition>
  12. <ColumnDefinition></ColumnDefinition>
  13. </Grid.ColumnDefinitions>
  14. <Grid.RowDefinitions>
  15. <RowDefinition></RowDefinition>
  16. <RowDefinition></RowDefinition>
  17. </Grid.RowDefinitions>
  18. <Button Width="Auto" Height="23">
  19. <Button.Content>
  20. <TextBlock Text="x" VerticalAlignment="Center" FontSize="12"></TextBlock>
  21. </Button.Content>
  22. </Button>
  23. </Grid>
  24. </Window>