Mono Gtk 文档?

发布于 2024-12-01 21:51:05 字数 1539 浏览 1 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

紧拥背影 2024-12-08 21:51:05

您已经在这里解释了所有内容:

http://www.mono-project.com/Monodoc

您可以甚至下载一个工具来浏览计算机上的文档。
想去的地方直接是monodoc,节Gnome Libraries >>> Gtk:

http://docs.go-mono.com/

关于密钥处理程序的问题,它看起来像这样:

    protected virtual void OnTableKeyPress(object o, Gtk.KeyPressEventArgs args)
    {
        if ( args.Event.Key == Gdk.Key.Alt_L ) {
             Util.MsgInfo( "Left alt pressed!" );
        }
    }

希望这会有所帮助。

You have everything explained here:

http://www.mono-project.com/Monodoc

You can even download a tool in order to browse the documentation on your computer.
The place where you want to go is the monodoc directly, section Gnome Libraries >> Gtk:

http://docs.go-mono.com/

About your problem with the key handler, it sould look like this one:

    protected virtual void OnTableKeyPress(object o, Gtk.KeyPressEventArgs args)
    {
        if ( args.Event.Key == Gdk.Key.Alt_L ) {
             Util.MsgInfo( "Left alt pressed!" );
        }
    }

Hope this helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文