summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/Controls/Samples/TLabel/Samples.page
diff options
context:
space:
mode:
authorxue <>2005-12-30 00:38:04 +0000
committerxue <>2005-12-30 00:38:04 +0000
commit341cd739bae562f8460fddc08b14a97833225a9e (patch)
treee1a2f86367c1d9f89d0e8b42bb61a29211e42f9b /demos/quickstart/protected/pages/Controls/Samples/TLabel/Samples.page
parentcdfe42047b3988152afaff124b0f9e8b34ab7f13 (diff)
Diffstat (limited to 'demos/quickstart/protected/pages/Controls/Samples/TLabel/Samples.page')
-rw-r--r--demos/quickstart/protected/pages/Controls/Samples/TLabel/Samples.page45
1 files changed, 45 insertions, 0 deletions
diff --git a/demos/quickstart/protected/pages/Controls/Samples/TLabel/Samples.page b/demos/quickstart/protected/pages/Controls/Samples/TLabel/Samples.page
new file mode 100644
index 00000000..381541a0
--- /dev/null
+++ b/demos/quickstart/protected/pages/Controls/Samples/TLabel/Samples.page
@@ -0,0 +1,45 @@
+<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="14pt"
+/>
+
+</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 ForeColor="blue" Style="color:red;">
+This is a label with empty Text property and <b>nonempty body</b>.
+</com:TLabel>
+
+</div>
+
+<div class="samplepanel">
+
+<com:TLabel
+ Text="This is a disabled label."
+ Enabled="false"
+/>
+
+</div>
+
+</com:TContent> \ No newline at end of file