Click here to Skip to main content
15,885,546 members
Articles / Desktop Programming / Windows Forms

TreeTabControl. A Tree of Tab Items

Rate me:
Please Sign up or sign in to vote.
4.67/5 (11 votes)
28 Mar 2010CPOL5 min read 38.9K   3.4K   33  
Handling a tree of customized tab items
<UserControl x:Class="TreeTabControlTest.Example"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Height="244" Width="533">
    <Grid>
        <Label Height="28" HorizontalAlignment="Left" Margin="12,14,0,0" Name="label1" VerticalAlignment="Top" Width="92">First Name</Label>
        <TextBox Height="23" Margin="122,14,258,0" Name="textBox1" VerticalAlignment="Top" />
        <Label Height="28" HorizontalAlignment="Left" Margin="12,38,0,0" Name="label2" VerticalAlignment="Top" Width="92">Sur Name</Label>
        <TextBox Height="23" Margin="122,43,258,0" Name="textBox2" VerticalAlignment="Top" />
        <RadioButton Height="16" HorizontalAlignment="Left" Margin="129,88,0,0" Name="radioButton1" VerticalAlignment="Top" Width="120">Male</RadioButton>
        <RadioButton Height="16" Margin="0,88,213,0" Name="radioButton2" VerticalAlignment="Top" HorizontalAlignment="Right" Width="120">Famele</RadioButton>
        <TextBox Margin="12,110,65,50" Name="textBox3" />
    </Grid>
</UserControl>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Spain Spain
http://www.linkedin.com/in/gerard-castello-viader
https://github.com/gcastellov

Comments and Discussions