找回密码
 立即注册

QQ登录

只需一步,快速开始

jplzj
论坛元老   /  发表于:2012-3-23 12:21  /   查看:6270  /  回复:3
如题!

3 个回复

正序浏览
iceman
社区贡献组   /  发表于:2012-3-23 15:48:00
地板

回复 3# jplzj 的帖子

回复 使用道具 举报
jplzj
论坛元老   /  发表于:2012-3-23 15:30:00
板凳
谢谢
回复 使用道具 举报
iceman
社区贡献组   /  发表于:2012-3-23 13:26:00
沙发

回复 1# jplzj 的帖子

Hello~ 可以通过重载单元格类型实现,请参考代码:
  1.   class MyTextCellType : FarPoint.Win.Spread.CellType.TextCellType
  2.     {
  3.         TextBox textbox = new TextBox();
  4.         ContextMenu screenMenu = new ContextMenu();
  5.         public override Control GetEditorControl(Control parent, FarPoint.Win.Spread.Appearance appearance, float zoomFactor)
  6.         {
  7.             textbox.BackColor = System.Drawing.Color.Red;
  8.             textbox.ContextMenu = screenMenu;
  9.             return textbox;
  10.         }
  11.     }
复制代码
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 立即注册
返回顶部