概观
这是一个使用 MyGeneration 开发模板的基本的介绍。如果你安装了 MyGeneration ,并且对 MyGeneration 感到迷惑的话,这里是一个很好的教你使用 MyGeneration 的教程。这个教程将教会你使用 MyGeneration 创建基本的 JScript. 或 VBScript. 的模板。
创建模板
- 打开 MyGeneration
- 从菜单中选择File->New->JScript. Template或者File->New->VBScript. Template
填充模板属性
- 你可以通过点击 Property 按钮查看或编辑模板的属性
按照如下的显示填充属性窗体
保存模板
输入UI接口代码
通过切换到Interface Code的Tab页面,可以编辑接口代码。这里的接口代码在运行时,将会生成一个窗体,提示用户输入一个名称,而用户输入的名称将会替换掉“Hello World”中的World。
JScript
//In the interface code segment, the setup function
//is the initial function call.
function setup()
{
//Set the form title bar to say "Hello World!!"
ui.Title = "Hello World!!";
//Set the height and width of the form in pixels
ui.Height = 150;
ui.Width = 340;
//Add a label and a textbox to the form.
ui.AddLabel("lblName", "Enter a Name:", "Enter a name below");
ui.AddTextBox("txtName", "World", "Enter a name in here");
//The number of times to repeat "Hellow World!!"
input.item("timesToRepeat") = 10;
//Tells MyGeneration to display the form. If this is
//set to false. MyGeneration skips displaying the
//form, but retains any changes made in the interface
//code segment.
ui.ShowGUI = true;
}
VBScript
'In the interface code segment, the setup function
'is the initial function call.
Sub setup()
'Set the form title bar to say "Hello World!!"
ui.Title = "Hello World!!"
'Set the height and width of the form in pixels
ui.Height = 150
ui.Width = 340
'Add a label and a textbox to the form.
ui.AddLabel "lblName", "Enter a Name:", "Enter a name below"
ui.AddTextBox "txtName", "World", "Enter a name in here"
'The number of times to repeat "Hellow World!!"
input.item("timesToRepeat") = 10
'Tells MyGeneration to display the form. If this is
'set to false. MyGeneration skips displaying the
'form, but retains any changes made in the interface
'code segment.
ui.ShowGUI = true
End Sub
测试UI接口
如果你想测试一下前面输入的内容的结果,你就需要执行模板。