Last change
on this file since 673 was 638, checked in by イグトランス (egtra), 17 years ago |
StaticTextクラス(Staticコントロールのテキストのみ対応)を追加
|
File size:
745 bytes
|
Line | |
---|
1 | 'Classes/ActiveBasic/Windows/UI/StaticText.ab
|
---|
2 |
|
---|
3 | #require <Classes/ActiveBasic/Windows/UI/Control.ab>
|
---|
4 |
|
---|
5 | Namespace ActiveBasic
|
---|
6 | Namespace Windows
|
---|
7 | Namespace UI
|
---|
8 |
|
---|
9 | /*!
|
---|
10 | @brief スタティックコントロールのクラス(テキスト専用)
|
---|
11 | @date 2008/09/29
|
---|
12 | @auther Egtra
|
---|
13 | アイコンとか画像表示はまた別のクラスで
|
---|
14 | */
|
---|
15 | Class StaticText
|
---|
16 | Inherits WmCommandControl
|
---|
17 | Protected
|
---|
18 | Override Sub GetCreateStruct(ByRef cs As CREATESTRUCT)
|
---|
19 | With cs
|
---|
20 | .lpszClass = "STATIC"
|
---|
21 | End With
|
---|
22 | End Sub
|
---|
23 | Public
|
---|
24 | Override Function RaiseCommandEvent(notificationCode As Word) As Boolean
|
---|
25 | 'ToDo: 後でイベントを調べる
|
---|
26 | RaiseCommandEvent = False
|
---|
27 | End Function
|
---|
28 |
|
---|
29 | 'ToDo: Lineなどを設ける
|
---|
30 | End Class
|
---|
31 |
|
---|
32 | End Namespace 'UI
|
---|
33 | End Namespace 'Widnows
|
---|
34 | End Namespace 'ActiveBasic
|
---|
Note:
See
TracBrowser
for help on using the repository browser.