回复 2楼wp_pandy的帖子
你好,不好意思,让你久等了,
spread 默认tab机制为在 Spread 内部单元格之间跳转,请尝试使用下面代码测试,看是否还会出现你所说的问题:
- protected void Page_Load(object sender, EventArgs e)
- {
- if (IsPostBack)
- {
- return;
- }
- FarPoint.Web.Spread.StyleInfo style = new FarPoint.Web.Spread.StyleInfo();
- FarPoint.Web.Spread.TextCellType textcelltype = new FarPoint.Web.Spread.TextCellType();
- textcelltype.ShowEditor = true;
- style.CellType = textcelltype;
- this.FpSpread1.Sheets[0].SetStyleInfo(-1, -1, style);
- }
复制代码 |