回复 1楼Feddy的帖子
你好,经过验证没有重现你的问题。
测试步骤:
1.在运行时,选择单元格Cell[0,0]。
2.按下键盘,输入"a"。
进入编辑状态输入"a",同时TextBox里的内容同步更新。
测试所用的EditChange事件代码如下:
- void fpSpread1_EditChange(object sender, FarPoint.Win.Spread.EditorNotifyEventArgs e)
- {
- if (e.EditingControl.GetType().Equals(typeof(FarPoint.Win.Spread.CellType.GeneralEditor)))
- {
- textBox1.Text = "("+e.Row + "," + e.Column+ ") value: " + e.EditingControl.Text;
- }
- }
复制代码 |