Qyoto

本页使用了标题或全文手工转换
维基百科,自由的百科全书

这是Qyoto当前版本,由InternetArchiveBot留言 | 贡献编辑于2021年2月8日 (一) 16:24 (补救4个来源,并将0个来源标记为失效。) #IABot (v2.0.8)。这个网址是本页该版本的固定链接。

(差异) ←上一修订 | 最后版本 (差异) | 下一修订→ (差异)

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();
    }
}

外部連結[编辑]