Ignore:
Timestamp:
Jul 13, 2008, 2:09:01 PM (16 years ago)
Author:
イグトランス (egtra)
Message:

ActiveBasic.Windows.UI.FormsをUIへ移動。UI以下にForms以外置くものが思い浮かばないので。

File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/ablib/src/Classes/ActiveBasic/Windows/UI/Control.ab

    r544 r545  
    11'Classes/ActiveBasic/Windows/UI/Control.ab
    22
    3 #require <Classes/ActiveBasic/Windows/UI/Forms/EventArgs.ab>
     3#require <Classes/ActiveBasic/Windows/UI/EventArgs.ab>
    44
    55Namespace ActiveBasic
    66Namespace Windows
    77Namespace UI
    8 Namespace Forms
    98
    109'Namespace Detail
     
    252251        If Not IsNothing(a) Then
    253252            If Not IsNothing(messageMap) Then
    254                 Dim msg = Nothing As Object : msg = New System.UInt32(message)
     253                Dim msg = Hex$(message)
    255254                Dim m = messageMap.Item[msg]
    256255                If Not IsNothing(m) Then
     
    439438End Class
    440439
    441 End Namespace 'Forms
    442440End Namespace 'UI
    443441End Namespace 'Widnows
    444442End Namespace 'ActiveBasic
    445443
    446 
    447444'----------
    448445'テスト実行用
    449446
    450 Imports ActiveBasic.Windows.UI.Forms
     447Imports ActiveBasic.Windows.UI
    451448
    452449'OleInitialize()
     
    456453    Inherits Form
    457454Public
    458     Sub t()
     455    Sub MyForm()
    459456        Dim f = This
    460457        f.AddMessageEvent(WM_DESTROY, AddressOf (f.Destory))
     
    473470
    474471Dim f = New MyForm
    475 f.t()
    476472f.Create()
    477473ShowWindow(f.Handle, SW_SHOW)
Note: See TracChangeset for help on using the changeset viewer.