我拼命地試圖使用混亂(在MonoDevelop IDE)來證明功能,但我不熟悉C#約定一個非常簡單的C#程序。我是否需要構造一個混亂對象然後引用它?我是否在我的圖書館中錯誤地宣佈了它? Clutter應該是我的命名空間而不是HelloWorld嗎?任何幫助將不勝感激。如何將Clutter與C#結合使用?
using System;
using Clutter;
namespace HelloWorld {
public class HelloWorld {
public int Main() {
// Init declaration produces error:
// Expression denotes a 'type', where a 'method group' was expected
Clutter.Init();
Stage stage = Stage.Default;
stage.Color = new Clutter.Color (0, 0, 0, 255);
stage.SetSize (512, 512);
stage.Show();
// Main declaration produces error:
// Expression denotes a 'type', where a 'method group' was expected
Clutter.Main();
return 0;
}
}
}
(http://www.clutter-project.org/about) - 雜波是一個開源(LGPL 2.1)軟件庫,用於創建快速,引人注目,便攜和動態的圖形用戶界面。它是MeeGo的核心部分,並得到了開源社區的支持。其發展由英特爾贊助。 – bjenks22446