source: trunk/ab5.0/ablib/src/Classes/ActiveBasic/Windows/UI/ListBox.ab@ 576

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

ListBox, Dialogの追加。UI_Sample/mouse_watcherの追加。

File size: 517 bytes
RevLine 
[576]1'Classes/ActiveBasic/Windows/UI/ListBox.ab
2#require <Classes/ActiveBasic/Windows/UI/Control.ab>
3
4Namespace ActiveBasic
5Namespace Windows
6Namespace UI
7
8/*!
9@brief リストボックスコントロールのクラス
10@date 2007/07/21
11@auther Egtra
12*/
13Class ListBox
14 Inherits Control
15Protected
16 Override Sub GetCreateStruct(ByRef cs As CREATESTRUCT)
17 With cs
18 .lpszClass = "LISTBOX"
19 End With
20 End Sub
21
22 'ToDo: Lineなどを設ける
23End Class
24
25End Namespace 'UI
26End Namespace 'Widnows
27End Namespace 'ActiveBasic
Note: See TracBrowser for help on using the repository browser.