| 12345678910111213141516171819202122232425262728293031323334 |
- <views:RFC3489ReactivePage
- x:Class="NatTypeTester.Views.RFC3489Page"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:views="using:NatTypeTester.Views"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- mc:Ignorable="d">
- <Grid Margin="10" RowDefinitions="Auto,*">
- <StackPanel Spacing="5">
- <InfoBar
- IsOpen="True"
- IsClosable="False"
- Severity="Warning"
- x:Uid="RFC3489Warning" />
- <TextBox x:Name="NatTypeTextBox"
- x:Uid="RFC3489NatTypeTextBox"
- IsReadOnly="True" />
- <TextBox x:Name="LocalEndComboBox"
- x:Uid="LocalEndComboBox" />
- <TextBox x:Name="PublicEndTextBox"
- x:Uid="PublicEndTextBox"
- IsReadOnly="True" />
- </StackPanel>
- <Button x:Name="TestButton"
- x:Uid="TestButton"
- Grid.Row="1"
- HorizontalAlignment="Right" VerticalAlignment="Bottom" />
- </Grid>
- </views:RFC3489ReactivePage>
|