source: trunk/ab5.0/ablib/src/Classes/ActiveBasic/Windows/UI/FormEvent.sbp@ 545

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

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

File size: 475 bytes
Line 
1Public
2 Sub AddQueryClose(h As FormClosingEventHandler)
3 If IsNothing(queryClose) Then
4 queryClose = h
5 Else
6 queryClose += h
7 End If
8 End Sub
9 Sub RemoveQueryClose(h As FormClosingEventHandler)
10 If Not IsNothing(queryClose) Then
11 queryClose -= h
12 End If
13 End Sub
14Private
15 Sub OnQueryClose(e As FormClosingEventArgs)
16 If Not IsNothing(queryClose) Then
17 queryClose(This, e)
18 End If
19 End Sub
20Private
21 queryClose As FormClosingEventHandler
22
Note: See TracBrowser for help on using the repository browser.