summaryrefslogtreecommitdiff
path: root/cpp/test/uwp/controller/ViewController.xaml
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/uwp/controller/ViewController.xaml')
-rw-r--r--cpp/test/uwp/controller/ViewController.xaml5
1 files changed, 4 insertions, 1 deletions
diff --git a/cpp/test/uwp/controller/ViewController.xaml b/cpp/test/uwp/controller/ViewController.xaml
index 9ea1c4d9beb..de7830f076a 100644
--- a/cpp/test/uwp/controller/ViewController.xaml
+++ b/cpp/test/uwp/controller/ViewController.xaml
@@ -11,6 +11,7 @@
<Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
+ <RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
@@ -20,7 +21,9 @@
Margin="5"
VerticalAlignment="Bottom" TextWrapping="Wrap"/>
</StackPanel>
- <ListBox Margin="5" Grid.Row="1" x:Name="Output" Background="LightGray"></ListBox>
+ <ComboBox Grid.Row="1" Header="IPv4 Address" Name="ipv4Addresses " HorizontalAlignment="Stretch"
+ SelectionChanged="Hostname_SelectionChanged"></ComboBox>
+ <ListBox Margin="5" Grid.Row="2" x:Name="Output" Background="LightGray"></ListBox>
<StackPanel Grid.Row="3" VerticalAlignment="Bottom">
<TextBlock Text="Copyright (c) 2003-2017 ZeroC, Inc. All rights reserved."
Style="{StaticResource FooterStyle}"