我在后面的代码中设计了 Listbox。我想设置方向为水平的列表框。但我不知道在代码中设置 ItemsPanel。你能帮助我吗 ?谢谢。在 xaml 设计中,我使用:
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal"/>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
除此之外,我想在列表框中添加另一个不存在的属性。例如:在 xaml 中,我可以在 Listbox 中添加 Grid.column = 1,但我不知道在后面的代码中使用它。