Mega Code Archive

 
Categories / C# / WPF
 

Put Different Objects to TabItem

<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"       WindowTitle="Canvas Sample">     <StackPanel>         <TabControl MinHeight="500" MinWidth="400">             <TabItem  Header="Canvas" IsSelected="True">                 <Canvas Height="400" Width="400">                      <Rectangle Width="100" Height="100" Fill="red"/>                 </Canvas>             </TabItem>             <TabItem Header="XAML Markup">                 <TextBlock  xml:space="preserve">                        &lt;&gt;                 </TextBlock>             </TabItem>             <TabItem  Header="Description">                 <StackPanel>                     <TextBlock>Sample</TextBlock>                 </StackPanel>             </TabItem>         </TabControl>         <TextBlock >All rights reserved.</TextBlock>     </StackPanel> </Page>