我一直在搜索许多博客。如何在网格单元格中动态创建列表框。我想在Grid列中水平添加列表框项。例如,我想显示该列中的工作日意味着,我有XAML中的代码来执行此操作。
<ListBox SelectionMode="Multiple" ScrollViewer.HorizontalScrollBarVisibility="Disabled" Margin="0,0,10,0">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal"></StackPanel>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
<ListBoxItem> Mon </ListBoxItem>
<ListBoxItem> Tue </ListBoxItem>
<ListBoxItem> Wed </ListBoxItem>
<ListBoxItem> Thu </ListBoxItem>
<ListBoxItem> Fri </ListBoxItem>
</ListBox>
但我不知道如何在动态创建相同的内容。我有一个按钮,如果我单击按钮它应该创建列表框中的项目。再次,如果单击该按钮,它应该在该网格的下一行创建另一个列表框。
这是我背后的代码。
public int i=0;
private void Button_Click(object sender, RoutedEventArgs e)
{
RowDefinition row0 = new RowDefinition();
row0.Height = new GridLength(40);
grid1.RowDefinitions.Add(row0);
ColumnDefinition col0 = new ColumnDefinition();
col0.Width = new GridLength(150);
grid1.ColumnDefinitions.Add(col0);
Listbox lb=new Listbox();
?
?
Grid.SetRow(?, i);
Grid.SetColumn(?, 0);
i++;
}
答案 0 :(得分:0)
var panelTemplate = new ItemsPanelTemplate();
var stackPanel = new FrameworkElementFactory(typeof(StackPanel));
stackPanel.SetValue(StackPanel.OrientationProperty, Orientation.Horizontal);
panelTemplate.VisualTree = stackPanel;
ListBox listBox = new ListBox();
listBox.ItemsPanel = panelTemplate;
listBox.Items.Add("Mon");
listBox.Items.Add("Tue");
listBox.Items.Add("Wed");
listBox.Items.Add("Thu");
listBox.Items.Add("Fri");
this.grid.Children.Add(listBox);
listBox.SetValue(Grid.RowProperty, 0);
listBox.SetValue(Grid.ColumnProperty, 0);