diff options
author | Grant Limberg <glimberg@gmail.com> | 2015-10-26 20:06:53 -0700 |
---|---|---|
committer | Grant Limberg <glimberg@gmail.com> | 2015-10-26 20:06:53 -0700 |
commit | 268fbdabce8e0e2a6eb3e1b43528d4e301c5a665 (patch) | |
tree | 26a2997c74164184efda400c071415ba3225c184 /windows/WinUI/PeersPage.xaml | |
parent | 87496e9f4a78fae5f9e9bf88479525a3811da522 (diff) | |
download | infinitytier-268fbdabce8e0e2a6eb3e1b43528d4e301c5a665.tar.gz infinitytier-268fbdabce8e0e2a6eb3e1b43528d4e301c5a665.zip |
disable sorting of peers
Diffstat (limited to 'windows/WinUI/PeersPage.xaml')
-rw-r--r-- | windows/WinUI/PeersPage.xaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/windows/WinUI/PeersPage.xaml b/windows/WinUI/PeersPage.xaml index ab498eea..bf96f5ef 100644 --- a/windows/WinUI/PeersPage.xaml +++ b/windows/WinUI/PeersPage.xaml @@ -5,7 +5,7 @@ xmlns:d="http://schemas.microsoft.com/expression/blend/2008" mc:Ignorable="d" d:DesignHeight="300" d:DesignWidth="300" Background="White" Foreground="Black"> - <DataGrid x:Name="dataGrid" AutoGenerateColumns="False" CanUserResizeColumns="True" Margin="0,0,0,0" CanUserReorderColumns="False" Width="{Binding RelativeSource={RelativeSource AncestorType={x:Type Window}}, Path=ActualWidth}" Height="{Binding RelativeSource={RelativeSource AncestorType={x:Type Window}}, Path=ActualHeight}"> + <DataGrid x:Name="dataGrid" AutoGenerateColumns="False" CanUserResizeColumns="True" Margin="0,0,0,0" CanUserReorderColumns="False" Width="{Binding RelativeSource={RelativeSource AncestorType={x:Type Window}}, Path=ActualWidth}" Height="{Binding RelativeSource={RelativeSource AncestorType={x:Type Window}}, Path=ActualHeight}" CanUserSortColumns="False"> <DataGrid.Columns> <DataGridTextColumn Header="Address" Binding="{Binding Address}"/> <DataGridTextColumn Header="Version" Binding="{Binding VersionString}"/> |