1

这是我的习惯WebBrowser control

using System;
using System.Text.RegularExpressions;
using System.Windows.Forms;

public class RunescapeClient : WebBrowser
{
  private const string RUNESCAPE_CLIENT_URL = "http://oldschool33.runescape.com/j1";

public RunescapeClient()
{
    ScrollBarsEnabled = false;
    ScriptErrorsSuppressed = true;
    IsWebBrowserContextMenuEnabled = false;
    AllowWebBrowserDrop = false;
    Navigate(RUNESCAPE_CLIENT_URL);
}

protected override void OnDocumentCompleted(WebBrowserDocumentCompletedEventArgs e)
{
    if (Document != null && ValidClientUrl(e.Url.ToString()))
    {
        HtmlElement tableElement = Document.GetElementsByTagName("table")[1];
        tableElement.InnerText = string.Empty;
    }
}

private static bool ValidClientUrl(string url)
{
    return Regex.IsMatch(url, @"http://oldschool\d{1,2}.runescape.com/j1");
}
}

我怎样才能将cursor这个更改为control我的embedded .ico. 我用谷歌搜索并找不到任何custom controls.

谢谢。

4

1 回答 1

0

光标始终由Cursor属性更改。如果您有自定义控件并不重要。

尝试这个:

Icon ico = new Icon(@"C:\temp\someIcon.ico");
this.Cursor = new Cursor(ico.Handle);

静态类System.Windows.Forms.Cursors包含所有系统游标。
要切换回默认系统光标,请使用以下命令:

this.Cursor = System.Windows.Forms.Cursors.Default;
于 2013-04-25T06:41:22.477 回答