blob: ec9ee714a861a8b417109e17460aec7cc85a655b (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
|
<com:TContent ID="body">
<h1>TTabPanel Samples</h1>
<com:TTabPanel ActiveViewID="View2">
<com:TTabView ID="View1" Caption="View 1" Height="200px">
<h2>View 1</h2>
<p>
This shows a nested tab panel. To ensure the proper display, we explicitly
set the height of the outer view to be 200px.
</p>
<com:TTabPanel ActiveViewIndex="1"
Width="50%"
TabStyle.BorderColor="red"
ActiveTabStyle.BorderColor="red"
ViewStyle.BorderColor="red">
<com:TTabView ID="View11" Caption="View 11">
This is view 11.
</com:TTabView>
<com:TTabView ID="View21" Caption="View 12" Text="This is view 12" />
</com:TTabPanel>
</com:TTabView>
<com:TTabView ID="View2" Caption="View 2">
<h2>View 2</h2>
<p>Please choose a color:</p>
<com:TDropDownList ID="DropDownList">
<com:TListItem Value="Red" />
<com:TListItem Value="Blue" />
<com:TListItem Value="Green" />
</com:TDropDownList>
</com:TTabView>
<com:TTabView Caption="View 3">
<h2>View 3</h2>
<p>
Click on the following button to see if we keep your input after postback.
</p>
<com:TButton Text="Submit" />
</com:TTabView>
</com:TTabPanel>
</com:TContent>
|