|
Last change
on this file since 673 was 642, checked in by イグトランス (egtra), 17 years ago |
|
CheckBoxとButtonBaseクラスを追加。
|
|
File size:
500 bytes
|
| Line | |
|---|
| 1 | 'Classes/ActiveBasic/Windows/UI/Button.ab
|
|---|
| 2 |
|
|---|
| 3 | #require <Classes/ActiveBasic/Windows/UI/ButtonBase.ab>
|
|---|
| 4 |
|
|---|
| 5 | Namespace ActiveBasic
|
|---|
| 6 | Namespace Windows
|
|---|
| 7 | Namespace UI
|
|---|
| 8 |
|
|---|
| 9 | /*!
|
|---|
| 10 | @date 2008/07/13
|
|---|
| 11 | @brief ボタンを表すクラス。
|
|---|
| 12 | @author Egtra
|
|---|
| 13 | */
|
|---|
| 14 | Class Button
|
|---|
| 15 | Inherits ButtonBase
|
|---|
| 16 | Protected
|
|---|
| 17 | Override Sub GetCreateStruct(ByRef cs As CREATESTRUCT)
|
|---|
| 18 | Super.GetCreateStruct(cs)
|
|---|
| 19 | cs.style Or= BS_PUSHBUTTON
|
|---|
| 20 | End Sub
|
|---|
| 21 | Public
|
|---|
| 22 |
|
|---|
| 23 | End Class
|
|---|
| 24 |
|
|---|
| 25 | End Namespace 'UI
|
|---|
| 26 | End Namespace 'Widnows
|
|---|
| 27 | End Namespace 'ActiveBasic
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.