由于spread可以针对spread上不同区域设置不同的cursor 所以你以上设置将不起作用。
你可以使用FpSpread下的SetCursor()方法针对不同区域设置cursor
如果你只是简单的让Spread所有区域都变味Hand样式的Cursor的话
可以使用如下代码
C#
foreach (CursorType ct in Enum.GetValues(typeof(CursorType)))
{
fpSpread1.SetCursor(ct, Cursors.Hand);
}
VB.net:
For Each ct As CursorType In [Enum].GetValues(GetType(CursorType))
fpSpread1.SetCursor(ct, Cursors.Hand)
Next |