Thread: TabbedPanel
View Single Post
  #1  
Unread 04-09-2005, 02:19 PM
hirebrand hirebrand is offline
Bellum Aeternus
This person is a EQ2Map developer.
Interface Author - Click to view interfaces
 
Join Date: Dec 2004
Server: Unkown
Posts: 165
Lightbulb TabbedPanel


Code:
<TabbedPane Name="TabbedPane"
	DataSource="TabSource" 
	TargetPage="MainTabPage"
	ActiveTab="0" 
	Style="/ButtonStyles.tab_default"
	Location="0,0"
	Size="300,25">
</TabbedPane>


<DataSource Name="TabSource">
	
	<Data Name="One"
		target="OnePage"
		text="Tab Title Here"/>

	<Data Name="Two"
		target="TwoPage"
		text="Second Tab"/>
		
</DataSource>


<Page Name="MainTabPage"
	Location="0,26"
	Size="100,100">

	<Page Name="OnePage"
		Visible="true"
		Location="0,0"
		Size="300,100"/>

	<Page Name="TwoPage"
		Visible="false"
		Location="0,0"
		Size="300,100"/>
</Page>
Attached Thumbnails
Click image for larger version

Name:	Untitled-1.GIF
Views:	459
Size:	6.0 KB
ID:	2321  
Reply With Quote