ValueChanged是个事件,您可以在初始化subeditor是订阅这个事件,在需要时做业务处理。
需要回传单元格您只需要GetValue方法即可,这个reuturn的值会写入单元格。
- public object GetValue()
- {
- return txt.Text;
- }
复制代码
- mySubEd sub = new mySubEd();
- sub.ValueChanged += Sub_ValueChanged;
- }
- private void Sub_ValueChanged(object sender, EventArgs e)
- {
- throw new NotImplementedException();
- }
复制代码 |