blob: 6ef8d0d30c74edf6c2cf818000b27acfe7baf2ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<com:TContent ID="body">
<h1>TTimeTriggeredCallback Samples</h1>
<table class="sampletable">
<tr><td class="samplenote">
A timer updating a label with the current time every 5 seconds:
</td><td class="sampleaction">
<com:TTimeTriggeredCallback ID="time1" Interval="5" OnCallback="timercallback" />
<com:TActiveButton
Text="start timer"
OnClick="startClicked"
/>
<com:TActiveButton
Text="stop timer"
OnClick="stopClicked"
/>
<com:TActiveLabel ID="label1" />
</td></tr>
</table>
</com:TContent>
|