|
|
@@ -72,6 +72,7 @@
|
|
|
<ComboBox x:Name="RemoteTargetInterfaceComboBox"
|
|
|
Margin="0,10,0,0"
|
|
|
MinHeight="36"
|
|
|
+ VerticalContentAlignment="Center"
|
|
|
DisplayMemberPath="DisplayName"
|
|
|
SelectionChanged="RemoteTargetInterfaceComboBox_OnSelectionChanged" />
|
|
|
<TextBlock x:Name="RemoteSummaryTextBlock"
|
|
|
@@ -132,19 +133,19 @@
|
|
|
<UniformGrid Grid.Row="2" Margin="0,12,0,0" Columns="2">
|
|
|
<StackPanel Margin="0,0,12,12">
|
|
|
<TextBlock FontSize="12" Foreground="#6B7280" Text="IP 地址" />
|
|
|
- <TextBox x:Name="NewIpTextBox" Margin="0,8,0,0" MinHeight="32" TextChanged="ConfigInputChanged_OnChanged" />
|
|
|
+ <TextBox x:Name="NewIpTextBox" Margin="0,8,0,0" MinHeight="32" VerticalContentAlignment="Center" TextChanged="ConfigInputChanged_OnChanged" />
|
|
|
</StackPanel>
|
|
|
<StackPanel Margin="0,0,0,12">
|
|
|
<TextBlock FontSize="12" Foreground="#6B7280" Text="子网掩码" />
|
|
|
- <TextBox x:Name="NewMaskTextBox" Margin="0,8,0,0" MinHeight="32" TextChanged="ConfigInputChanged_OnChanged" />
|
|
|
+ <TextBox x:Name="NewMaskTextBox" Margin="0,8,0,0" MinHeight="32" VerticalContentAlignment="Center" TextChanged="ConfigInputChanged_OnChanged" />
|
|
|
</StackPanel>
|
|
|
<StackPanel Margin="0,0,12,0">
|
|
|
<TextBlock FontSize="12" Foreground="#6B7280" Text="网关" />
|
|
|
- <TextBox x:Name="NewGatewayTextBox" Margin="0,8,0,0" MinHeight="32" TextChanged="ConfigInputChanged_OnChanged" />
|
|
|
+ <TextBox x:Name="NewGatewayTextBox" Margin="0,8,0,0" MinHeight="32" VerticalContentAlignment="Center" TextChanged="ConfigInputChanged_OnChanged" />
|
|
|
</StackPanel>
|
|
|
<StackPanel Margin="0,0,0,0">
|
|
|
<TextBlock FontSize="12" Foreground="#6B7280" Text="首选 DNS" />
|
|
|
- <TextBox x:Name="NewDnsTextBox" Margin="0,8,0,0" MinHeight="32" TextChanged="ConfigInputChanged_OnChanged" />
|
|
|
+ <TextBox x:Name="NewDnsTextBox" Margin="0,8,0,0" MinHeight="32" VerticalContentAlignment="Center" TextChanged="ConfigInputChanged_OnChanged" />
|
|
|
</StackPanel>
|
|
|
</UniformGrid>
|
|
|
|