Table of Contents
Static TabControl

The following XAML demonstrates how to define a static TabControl with EO.Wpf control:

XAML
<Window x:Class="Test.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:eo="http://schemas.essentialobjects.com/wpf/"
        Title="MainWindow" Height="250" Width="350">
    <Border Padding="6">
        <eo:TabControl>
            <eo:TabItem Header="Tab1">
                Tab1 Content
            </eo:TabItem>
            <eo:TabItem Header="Tab2">
                Tab2 Content
            </eo:TabItem>
            <eo:TabItem Header="Tab3">
                Tab3 Content
            </eo:TabItem>
        </eo:TabControl>
    </Border>
</Window>

The above code generates the following result: