Spread for Winforms 表格控件:在单元格中创建列表

最近有用户在论坛提问如何向 Excel 一样实现在单元格中创建列表,在这里记录下来,以供广大用户参考。Step 1 : 自定义动作首先,我们需要在自定义动作中抓取当前的编辑器,通过设置其文本来实现折行。代码如下:<p><img src="http://our.componentone.com/wp-content/uploads/2013/10/OutputDemo1.gif" alt="OutputDemo1" /></p>

发布于 2013/11/10 00:00

SpreadJS

最近有用户在论坛提问如何向 Excel 一样实现在单元格中创建列表,在这里记录下来,以供广大用户参考。

Step 1 : 自定义动作

首先,我们需要在自定义动作中抓取当前的编辑器,通过设置其文本来实现折行。代码如下:

 1: public class myAction : FarPoint.Win.Spread.Action
 2: {
 3:   public override void PerformAction(object sender)
 4:   {
 5:      FarPoint.Win.Spread.SpreadView ss = (FarPoint.Win.Spread.SpreadView)sender;
 6:      FarPoint.Win.Spread.CellType.GeneralEditor editor =
 (FarPoint.Win.Spread.CellType.GeneralEditor)ss.EditingControl;
 7:      string text = editor.Text;
 8:      text += "\r\n \u2022 ";
 9:      ss.Sheets[0].SetValue(ss.Sheets[0].ActiveRowIndex,
 ss.Sheets[0].ActiveColumnIndex, text);
 10:      ss.EditMode = true;
 11:      editor = (FarPoint.Win.Spread.CellType.GeneralEditor)ss.EditingControl;
 12:      editor.SelectionStart = editor.Text.Length;
 13:      editor.Text = text;
 14:   }
 15: }

 

Step 2 :设置自定义动作给 Spread

我们需要设置自定义动作给 Spread,来重写 Alt+Enter 快捷键动作。代码如下:

 1: FarPoint.Win.Spread.InputMap ancestorOfFocusedMap = 
fpSpread1.GetInputMap(FarPoint.Win.Spread.InputMapMode.WhenAncestorOfFocused);
 2: FarPoint.Win.Spread.ActionMap am = fpSpread1.GetActionMap();
 3: am.Put("AltEnter", new myAction());
 4: ancestorOfFocusedMap.Put(new FarPoint.Win.Spread.Keystroke(Keys.Enter, Keys.None), 
FarPoint.Win.Spread.SpreadActions.MoveToNextRow );
 5: ancestorOfFocusedMap.Put(new FarPoint.Win.Spread.Keystroke(Keys.Enter, Keys.Alt)
, "AltEnter");
 6: fpSpread1.SetInputMap(FarPoint.Win.Spread.InputMapMode.WhenAncestorOfFocused,
 ancestorOfFocusedMap);

 

OutputDemo1

 

示例下载:

VS2010 + VB.NET + Framework 4.0 点击下载

SpreadJS | 下载试用

纯前端表格控件SpreadJS,兼容 450 种以上的 Excel 公式,具备“高性能、跨平台、与 Excel 高度兼容”的产品特性,备受华为、苏宁易购、天弘基金等行业龙头企业的青睐,并被中国软件行业协会认定为“中国优秀软件产品”。SpreadJS 可为用户提供类 Excel 的功能,满足表格文档协同编辑、 数据填报、 类 Excel 报表设计等业务场景需求,极大的降低企业研发成本和项目交付风险。

如下资源列表,可以为您评估产品提供帮助:

相关产品
推荐相关案例
推荐相关资源
关注微信
葡萄城社区二维码

关注“葡萄城社区”

活字格低代码二维码

关注“活字格低代码”

想了解更多信息,请联系我们, 随时掌握技术资源和产品动态