-
Notifications
You must be signed in to change notification settings - Fork 219
zh_CN_OpenFx_Extension_HelloAutumnBox
Shunhong Zhang edited this page Nov 17, 2018
·
3 revisions
为了达到最快的开发速度,我们将继承AutumnBoxExtension类并进行开发
public class ExampleExtension : AutumnBoxExtension
{
/*当你继承AutumnBoxExtension类
将会被要求实现Main方法
*/
protected override int Main()
{
/*AutumnBox提供了大量的API,
* 其中包括public IUx Ux{get;}属性类
* 这个属性的类提供了大量的关于用户交互的API
* 而我们在这里调用了其Message方法,这个方法将显示一个由秋之盒提供的消息框
* (base关键字只为说明关系,实际开发中无需声明)
*/
base.Ux.Message("Hello AutumnBox!");
//每一个模块都要求int类型的返回码
return 0;
}
}