Skip to content

Commit 745265f

Browse files
author
RandomEngy
committed
Putting reorder column panes back the way they were... that was actually correct!
1 parent bdf8184 commit 745265f

1 file changed

Lines changed: 6 additions & 13 deletions

File tree

VidCoder/View/QueueColumnsDialog.xaml

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -15,32 +15,25 @@
1515
<ColumnDefinition />
1616
<ColumnDefinition />
1717
</Grid.ColumnDefinitions>
18-
1918
<TextBlock Height="23" HorizontalAlignment="Left" Margin="15,10,0,0" Name="textBlock3" Text="Drag and drop to add, remove or reorder columns." VerticalAlignment="Top" Grid.ColumnSpan="2" />
20-
21-
22-
23-
<TextBlock
24-
Height="23" HorizontalAlignment="Center" Margin="0,39,0,0" VerticalAlignment="Top"
25-
Name="textBlock2" Text="Used columns" />
19+
20+
<TextBlock Height="23" HorizontalAlignment="Center" Margin="0,39,0,0" Name="textBlock1" Text="Unused columns" VerticalAlignment="Top" />
2621
<ListView
2722
Margin="6,59,10,9" Name="listView1"
2823
VidCoderDragDrop:DragDropHelper.IsDragSource="True"
2924
VidCoderDragDrop:DragDropHelper.IsDropTarget="True"
3025
VidCoderDragDrop:DragDropHelper.DragDropTemplate="{StaticResource ColumnDragTemplate}"
31-
ItemsSource="{Binding UsedColumns}"
26+
Foreground="DarkGray"
27+
ItemsSource="{Binding UnusedColumns}"
3228
DisplayMemberPath="Title"/>
3329

34-
<TextBlock
35-
Grid.Column="1" Height="23" HorizontalAlignment="Center" Margin="0,39,0,0" VerticalAlignment="Top"
36-
Name="textBlock1" Text="Unused columns" />
30+
<TextBlock Grid.Column="1" Height="23" HorizontalAlignment="Center" Margin="0,39,0,0" Name="textBlock2" Text="Used columns" VerticalAlignment="Top" />
3731
<ListView
3832
Grid.Column="1" Margin="10,59,12,9" Name="listView2"
3933
VidCoderDragDrop:DragDropHelper.IsDragSource="True"
4034
VidCoderDragDrop:DragDropHelper.IsDropTarget="True"
4135
VidCoderDragDrop:DragDropHelper.DragDropTemplate="{StaticResource ColumnDragTemplate}"
42-
Foreground="DarkGray"
43-
ItemsSource="{Binding UnusedColumns}"
36+
ItemsSource="{Binding UsedColumns}"
4437
DisplayMemberPath="Title"/>
4538
</Grid>
4639
<Button Content="OK" Command="{Binding AcceptCommand}" Height="23" HorizontalAlignment="Right" Margin="0,0,93,12" Name="button1" VerticalAlignment="Bottom" Width="75" IsDefault="True" />

0 commit comments

Comments
 (0)