我正在尝试使用Infragistics WinForms 2015创建一个下拉列表。 我在线阅读了很多主题,但我找不到我要找的东西,或者它没有用。
我做了这个,但它不起作用:
private void FrmCVault_Load(object sender, EventArgs e)
{
var test = new UltraDropDown();
test.DataSource = new[] { "A1", "A2", "A3", "Pouet" };
CVaultGrid.DisplayLayout.Bands[0].Columns[0].ValueList = test;
CVaultDataSource.Rows.Add(new[] { "A1" });
CVaultDataSource.Rows.Add(new[] { "A2" });
CVaultDataSource.Rows.Add(new[] { "A3" });
}
它给了我这个: