我正在创建动态组合框,并且我还想为每个组合框添加一个 ColorPicker。但不幸的是我不知道怎么做。
有什么建议吗?
如果有帮助,这是代码:
for (int i = 1; i < int.Parse(shapes)+1; i++)
{
System.Windows.Controls.ComboBox box = new ComboBox();
box.Height = 23;
box.Width = 70;
box.Items.Add("------");
box.Items.Add("Sphere");
box.Items.Add("Line");
box.Items.Add("Plane");
box.Items.Add("Pyramid");
box.Items.Add("Cylinder");
box.Items.Add("Cube");
box.SelectedIndex = 0;
box.Margin = new Thickness(0, -285 + i * 62, 375, 0);
box.Name = "box" + i.ToString();
grid2.Children.Add(box);
}
谢谢。