[サンプルコード]
Form Form1 {
X = 0;
Y = 0;
Width = 400;
Height = 300;
Button Button1 {
X = 5;
Y = 5;
Width = 190;
Height = 35;
Title = "サーバ処理中は\r\nマウスポインタが変化";
Function OnTouch( e ) {
//.SetCursor("./server_process.cur");
/* サーバ処理を実行 */
//.ResetCursor();
}
}
Button Button2 {
X = 5;
Y = 50;
Width = 190;
Height = 35;
Title = "マウスをボタンの上に合わせると\r\nマウスポインタが変化";
}
if ( !$DESIGNTIME ) {
/* Button2にマウスを合わせると
マウスポインタの形状が変化 */
this.Button2.SetCursor("./button.cur");
}
}
|