source: trunk/ab5.0/ablib/src/Classes/ActiveBasic/Windows/UI/Button.ab@ 561

Last change on this file since 561 was 561, checked in by イグトランス (egtra), 16 years ago

EditBox, TaskMsgの追加。

File size: 565 bytes
Line 
1'Classes/ActiveBasic/Windows/UI/Button.ab
2
3#require <Classes/ActiveBasic/Windows/UI/Control.ab>
4
5Namespace ActiveBasic
6Namespace Windows
7Namespace UI
8
9/*!
10@date 2008/07/13
11@brief ボタンを表すクラス。
12@author Egtra
13*/
14Class Button
15 Inherits Control
16Protected
17 Override Sub GetCreateStruct(ByRef cs As CREATESTRUCT)
18 With cs
19 .lpszClass = "BUTTON"
20 .style Or= BS_PUSHBUTTON
21 End With
22 End Sub
23Public
24 Sub RaiseClick()
25 OnClick(Args.Empty)
26 End Sub
27
28End Class
29
30End Namespace 'UI
31End Namespace 'Widnows
32End Namespace 'ActiveBasic
Note: See TracBrowser for help on using the repository browser.