RFC5780Page.xaml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <views:RFC5780ReactivePage
  2. x:Class="NatTypeTester.Views.RFC5780Page"
  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. <Grid>
  12. <RadioButtons x:Name="TransportTypeRadioButtons" MaxColumns="4" Margin="0,0,0,5">
  13. <RadioButton Content="UDP" />
  14. <RadioButton Content="TCP" />
  15. <RadioButton Content="TLS" />
  16. </RadioButtons>
  17. </Grid>
  18. <TextBox
  19. x:Name="BindingTestTextBox"
  20. x:Uid="BindingTestTextBox"
  21. IsReadOnly="True" />
  22. <TextBox
  23. x:Name="MappingBehaviorTextBox"
  24. x:Uid="MappingBehaviorTextBox"
  25. IsReadOnly="True" />
  26. <TextBox
  27. x:Name="FilteringBehaviorTextBox"
  28. x:Uid="FilteringBehaviorTextBox"
  29. IsReadOnly="True" />
  30. <TextBox x:Name="LocalAddressComboBox"
  31. x:Uid="LocalEndComboBox" />
  32. <TextBox
  33. x:Name="MappingAddressTextBox"
  34. IsReadOnly="True"
  35. x:Uid="PublicEndTextBox" />
  36. </StackPanel>
  37. <Button x:Name="DiscoveryButton"
  38. x:Uid="TestButton"
  39. Grid.Row="1"
  40. HorizontalAlignment="Right" VerticalAlignment="Bottom" />
  41. </Grid>
  42. </views:RFC5780ReactivePage>