我正在创建一个VSTO单词add。我正在从ThisAddin开始一个很长的细节,我想将光标更改为WaitCursor,所以如果我去Globals.ThisAddIn.Application,没有游标属性,我在开始详细说明时尝试了Cursor.Current = Cursors.WaitCursor;
,在详细说明结束时尝试Cursor.Current = Cursors.Default;
,但是不起作用,光标不会改变。
关于如何做到这一点的任何想法?
答案 0 :(得分:1)
private static void SetCursorToWaiting()
{
Microsoft.Office.Interop.Word.Application application = Globals.ThisAddIn.Application;
application.System.Cursor = wdCursorWait;
}
private static void SetCursorToDefault()
{
Microsoft.Office.Interop.Word.Application application = Globals.ThisAddIn.Application;
application.System.Cursor = wdCursorNormal;
}
答案 1 :(得分:-2)