summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/Controls/Samples/Label.page
blob: 2fa779883cb26d734e69493607266ac0c4996dec (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
25
26
27
28
29
30
<com:TContent ID="body">

<h1>TLabel Samples</h1>

<div class="samplepanel">
<com:TLabel
	Text="This is a label with customized color and font."
	ForeColor="yellow"
	BackColor="blue"
	Font.Name="Arial"
	Font.Size="12pt"
/>
</div>

<div class="samplepanel">
<com:TLabel
	Text="This is a form label associated with the TTextBox control below."
	AssociatedControlID="test"
/>
<br/>
<com:TTextBox ID="test" />
</div>

<div class="samplepanel">
<com:TLabel>
This is a label with empty Text property and <b>nonempty body</b>.
</com:TLabel>
</div>

</com:TContent>