diff options
author | Grant Limberg <glimberg@gmail.com> | 2015-11-04 19:12:12 -0800 |
---|---|---|
committer | Grant Limberg <glimberg@gmail.com> | 2015-11-04 19:12:12 -0800 |
commit | d2c288b13f15f934c9eab649060439f4709f2a2d (patch) | |
tree | 12c691b80a1a748fff01e7e8ac1c2f635e1947a9 | |
parent | fc32dc11a6f60e5a86e92c7b937a5c4a9f23f4b0 (diff) | |
download | infinitytier-d2c288b13f15f934c9eab649060439f4709f2a2d.tar.gz infinitytier-d2c288b13f15f934c9eab649060439f4709f2a2d.zip |
Fix vertical scrolllbar on networks view
-rw-r--r-- | windows/WinUI/NetworksPage.xaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/windows/WinUI/NetworksPage.xaml b/windows/WinUI/NetworksPage.xaml index b48ea735..fa7ca281 100644 --- a/windows/WinUI/NetworksPage.xaml +++ b/windows/WinUI/NetworksPage.xaml @@ -5,7 +5,7 @@ xmlns:d="http://schemas.microsoft.com/expression/blend/2008" mc:Ignorable="d" d:DesignHeight="300" d:DesignWidth="300"> - <ScrollViewer x:Name="MyScrollViewer" HorizontalScrollBarVisibility="Disabled" VerticalScrollBarVisibility="Auto" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Width="{Binding RelativeSource={RelativeSource AncestorType={x:Type Window}}, Path=ActualWidth}" Height="{Binding RelativeSource={RelativeSource AncestorType={x:Type Window}}, Path=ActualHeight}"> + <ScrollViewer x:Name="MyScrollViewer" HorizontalScrollBarVisibility="Disabled" VerticalScrollBarVisibility="Auto" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Width="{Binding RelativeSource={RelativeSource AncestorType={x:Type Window}}, Path=RenderSize.ActualWidth}" Height="{Binding RelativeSource={RelativeSource AncestorType={x:Type Window}}, Path=RenderSize.ActualHeight}"> <WrapPanel x:Name="wrapPanel" Background="#FFDDDDDD" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"> </WrapPanel> |