RFC3489Page.xaml 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. <views:RFC3489ReactivePage
  2. x:Class="NatTypeTester.Views.RFC3489Page"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:views="using:NatTypeTester.Views"
  6. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  7. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  8. mc:Ignorable="d">
  9. <Grid Margin="10" RowDefinitions="Auto,*">
  10. <StackPanel Spacing="5">
  11. <InfoBar
  12. IsOpen="True"
  13. IsClosable="False"
  14. Severity="Warning"
  15. x:Uid="RFC3489Warning" />
  16. <TextBox x:Name="NatTypeTextBox"
  17. x:Uid="RFC3489NatTypeTextBox"
  18. IsReadOnly="True" />
  19. <TextBox x:Name="LocalEndComboBox"
  20. x:Uid="LocalEndComboBox" />
  21. <TextBox x:Name="PublicEndTextBox"
  22. x:Uid="PublicEndTextBox"
  23. IsReadOnly="True" />
  24. </StackPanel>
  25. <Button x:Name="TestButton"
  26. x:Uid="TestButton"
  27. Grid.Row="1"
  28. HorizontalAlignment="Right" VerticalAlignment="Bottom" />
  29. </Grid>
  30. </views:RFC3489ReactivePage>