Qyoto是跨平台的应用程式框架Qt的.NET语言绑定。能够使用在C#、Visual Basic或其他.NET语言,同时也是KimonoKDE API的.NET绑定)的基础。

Qyoto可以执行在X Window System(包含Linux操作系统和其他Unix),以及Windows。Qyoto使用SMOKE提供语言绑定基础。

Qyoto的hello world

using System;
using Qyoto;

public class HelloWorld 
{
    public static int Main(String[] args){
        QApplication app = new QApplication(args);
        QPushButton hello = new QPushButton("Hello world!");
        hello.Show();
        return QApplication.Exec();
    }
}

外部链接