这个在TabIndex的时候可用。
short x = 3.0; // Error: no implicit conversion from double short y = (short)3.0; // OK: explicit conversion
tb.TabIndex = (short)(e.Row.DataItemIndex+1);//添加索引
这个在TabIndex的时候可用。
short x = 3.0; // Error: no implicit conversion from double short y = (short)3.0; // OK: explicit conversion
tb.TabIndex = (short)(e.Row.DataItemIndex+1);//添加索引
转载于:https://www.cnblogs.com/zhulinmails/archive/2012/05/25/2518455.html