我设计了以下 WPF 窗口:
<Window x:Class="Boris.Gui.Wpf.DragDropWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Width="286" Height="350" ResizeMode="CanMinimize" Title="Drag and Drop">
<Window.Resources>
<!-- Sorted matches list panel -->
<ItemsPanelTemplate x:Key="SortedMatchesListPanel">
<UniformGrid Rows="3" Columns="4" />
</ItemsPanelTemplate>
</Window.Resources>
<Grid>
<ListBox
Name="SortedMatchesListBox"
Height="180"
Margin="12,85,12,0"
HorizontalAlignment="Stretch"
VerticalAlignment="Top"
ItemsPanel="{StaticResource ResourceKey=SortedMatchesListPanel}" />
</Grid>
</Window>
运行时,SortedMatchesListBox
列表中会填充项目,如下所示:
我的问题是:是否可以在UniformGrid
项目面板中指定列表项的单元格位置?例如,是否可以将突出显示的Team 2 vs Team 5
项目放在 下方Team 1 vs Team 5
,即将其移动到右侧的下一个单元格,并保留它当前所在的空白区域?它应该如下所示:
现在,我正在使用添加一个空白项目的技巧SortedMatchesListBox.ItemsSource
来实现它,但我真正想要的是能够在项目面板中指定项目的单元格位置。谢谢您的帮助。