找回密码
 立即注册

QQ登录

只需一步,快速开始

loacher
论坛元老   /  发表于:2011-3-8 15:47  /   查看:8457  /  回复:5
怎样设置让number列双击后不弹出计算器??

5 个回复

倒序浏览
gw0506
超级版主   /  发表于:2011-3-8 16:04:00
沙发
把DropDownButton置为false。
回复 使用道具 举报
loacher
论坛元老   /  发表于:2011-3-8 16:17:00
板凳
谢谢你的帮忙,但不是我想要的结果
DropDownButton置为false 之后, 不显示下拉列表的小按钮,但双击cell之后,仍然能弹出计算器

我就是不想弹出计算器,继续求助,怎么设置
回复 使用道具 举报
gw0506
超级版主   /  发表于:2011-3-8 16:28:00
地板
那你就不要用NumberCellType了。
用GeneralCellType,将NumberFormateInfo设置给NumberFormat属性。
  1. FarPoint.Win.Spread.CellType.GeneralCellType genlcell = new FarPoint.Win.Spread.CellType.GeneralCellType();
  2. System.Globalization.NumberFormatInfo numform = (System.Globalization.NumberFormatInfo)System.Globalization.NumberFormatInfo.CurrentInfo.Clone();
  3. numform.CurrencySymbol = "\xA3";   
  4. Decimal myCurrency = new Decimal( 123456 );
  5. genlcell.NumberFormat = numform;
  6. genlcell.NegativeRed = true;
  7. fpSpread1.ActiveSheet.Cells[0, 0].CellType = genlcell;
  8. fpSpread1.ActiveSheet.Cells[0, 0].Value = myCurrency.ToString( "C", numform );
复制代码
回复 使用道具 举报
loacher
论坛元老   /  发表于:2011-3-8 16:57:00
5#
谢谢楼上帅哥了
回复 使用道具 举报
Arthas
葡萄城公司职员   /  发表于:2011-3-15 14:06:00
6#
gw0506明明是MM。。。
扯淡第一高手
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 立即注册
返回顶部