回复 3楼xjsxjs197的帖子
你好,自定义了myCombo,依然没有发现你说的问题。
我的测试代码:
- void c1FlexGrid1_StartEdit(object sender, C1.Win.C1FlexGrid.RowColEventArgs e)
- {
- if (this.c1FlexGrid1.Editor is ComboBox)
- {
- myCombo cbo = new myCombo();
- cbo.Items.Add("mytiem");
- //........
- this.c1FlexGrid1.Editor = cbo;
- }
- }
- private void Form1_Load(object sender, EventArgs e)
- {
- myCombo1.Items.Add("aaa");
- myCombo1.Items.Add("bbb");
- this.c1FlexGrid1.Cols[1].Editor = myCombo1;
- }
复制代码
你能否把你的例子发下,以便我快速的帮助你解决问题? |