我需要处理什么事件以允许用户在值列表或超下拉列表中添加“水果”。
因为它是一个 KVP 我总是得到格式异常
Dictionary<int,string> fruits = new Dictionary<int,string>();
private void FruitInit()
{
//Create some fruit
fruits.Add(-1,"apple");
fruits.Add(-2,"banana");
//Create and add to the ultraDropDown
UltraDropDown fruitUltraDropDown = new UltraDropDown();
fruitUltraDropDown.DataSource = fruits.ToList();
fruitUltraDropDown.DisplayMember = "Value";
fruitUltraDropDown.ValueMember = "Key";
MyUltraGrid.DisplayLayout.Bands[0].Columns["MyColumn"].ValueList = fruitUltraDropDown;
}
我可以处理什么事件,所以当用户键入“葡萄”时,我可以用我自己的键将其添加到字典中,并将其添加到下拉列表中。目前,如果我在单元格中输入“葡萄”,我只会收到格式异常。
问候
_埃里克