WinPathText.xaml 989 B

123456789101112131415161718192021
  1. <Window x:Class="Test.PathTest.WinPathText"
  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.PathTest"
  7. mc:Ignorable="d"
  8. Title="WinPathText" Height="300" Width="300">
  9. <Grid>
  10. <Grid.RowDefinitions>
  11. <RowDefinition></RowDefinition>
  12. <RowDefinition></RowDefinition>
  13. <RowDefinition></RowDefinition>
  14. <RowDefinition></RowDefinition>
  15. </Grid.RowDefinitions>
  16. <TextBox x:Name="txtBase" Grid.Row="0"></TextBox>
  17. <TextBox x:Name="txtRelative" Grid.Row="1"></TextBox>
  18. <TextBox x:Name="txtResult" Grid.Row="2" IsReadOnly="True"></TextBox>
  19. <Button Grid.Row="3" Click="Button_Click"></Button>
  20. </Grid>
  21. </Window>