Spread for Winforms 表格控件提供 24 中单元格类型,其中包含 CheckBoxCellType、ButtonCellType 等图形类单元格类型。并且提供了相应的事件捕获单元格变动。
通常使用 .NET 平台下标准按钮时,我们一般都会使用回车键触发按钮点击事件。本篇博客即阐述如何响应回车事件触发 ButtonCellType 的点击事件。
该用例需要定制 Spread 快捷键映射。实现代码如下:
InputMap im = fpSpread1.GetInputMap(InputMapMode.WhenFocused); ActionMap am = fpSpread1.GetActionMap(); im.Put(new Keystroke(Keys.Enter, Keys.None), "ClickButtonAction"); am.Put("ClickButtonAction", new ClickButtonAction());
定制 SpreadAction 用于响应点击事件。
private class ClickButtonAction : FarPoint.Win.Spread.Action { public override void PerformAction(object source)
{ if (source is SpreadView) { SpreadView spreadView = (SpreadView)source; Form1.fpSpread1_ButtonClicked(spreadView, null); } } }
添加 Spread ButtonClick 事件:
public static void fpSpread1_ButtonClicked(object sender, EditorNotifyEventArgs e) { MessageBox.Show("Button Click test!"); }
以上即为实现方法。
Demo 下载:VS2010 && Spread for Winfroms 7.0 && .NET 4.0 && C#