123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <views:SettingReactivePage
- x:Class="NatTypeTester.Views.SettingPage"
- 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 RowDefinitions="Auto,Auto">
- <Grid Margin="15" Grid.Row="0">
- <RadioButtons x:Name="ProxyRadioButtons" x:Uid="ProxyRadioButtons">
- <RadioButton x:Uid="NoProxy" />
- <RadioButton x:Uid="SOCKS5Proxy" />
- </RadioButtons>
- </Grid>
- <ContentControl x:Name="ProxyConfigGrid" Grid.Row="1" Margin="15,0" HorizontalContentAlignment="Stretch">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto" />
- <RowDefinition Height="Auto" />
- <RowDefinition Height="Auto" />
- </Grid.RowDefinitions>
- <TextBox
- x:Name="ProxyServerTextBox"
- x:Uid="ProxyServerTextBox"
- Grid.Row="0"
- Margin="0,5" IsReadOnly="False" />
- <TextBox
- x:Name="ProxyUsernameTextBox"
- x:Uid="ProxyUsernameTextBox"
- Grid.Row="1"
- Margin="0,5" IsReadOnly="False" />
- <TextBox
- x:Name="ProxyPasswordTextBox"
- x:Uid="ProxyPasswordTextBox"
- Grid.Row="2"
- Margin="0,5" />
- </Grid>
- </ContentControl>
- </Grid>
- </views:SettingReactivePage>
|