Skip to content

Commit

Permalink
Disable column reordering
Browse files Browse the repository at this point in the history
  • Loading branch information
ledoge committed Aug 16, 2021
1 parent e31bce3 commit aaf5872
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion novideo_srgb/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
<Button DockPanel.Dock="Bottom" Content="Refresh" Width="75" HorizontalAlignment="Right"
Click="MonitorRefreshButton_Click" />
<DataGrid ItemsSource="{Binding Monitors}" RowHeaderWidth="0" AutoGenerateColumns="False"
DockPanel.Dock="Bottom" Margin="0,0,0,6" CanUserResizeColumns="False">
DockPanel.Dock="Bottom" Margin="0,0,0,6" CanUserResizeColumns="False" CanUserSortColumns="False"
CanUserReorderColumns="False">
<DataGrid.Resources>
<Style TargetType="{x:Type DataGridCell}">
<Setter Property="Template">
Expand Down

0 comments on commit aaf5872

Please sign in to comment.