-1
我必須設置光標的自定義圖像,而不是c#winform中的預定義圖標。光標而不是系統圖標的自定義圖像
但我想設置系統忙或處理髮生在後臺和完成他的任務後,然後它回到其默認設置。
我使用
private void button1_Click(object sender, EventArgs e)
{
Cursor.Current = new Cursor("D:\\hourglass.gif");
try
{
Thread.Sleep(5000); // wait for a while
}
finally
{
Cursor.Current = Cursors.Default;
}
}
這裏我定義了hourglass.gif這是自定義圖像。 但它是通過類似下面
「論證‘圖像’必須是可以被用作一個遊標 參數名稱的圖片:圖片」錯誤
能否請你幫助我如何解決它。
我使用以下代碼 –
我使用Cursor.Current =新的光標( 「C:\ ic.gif」);代碼 –
使用搜索 http://stackoverflow.com/questions/2797084/using-custom-cursor-winforms – codenthink