<Window x:Class="WpfApplication2.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="MainWindow" Height="350" Width="525"> <Grid> <TabControl TabStripPlacement="Left" Margin="0, 0, 0, 0"> <TabItem Name="fontweight" Header="FontWeight"> <TabItem.Content> <TextBlock TextWrapping="WrapWithOverflow"> FontWeight property information goes here. </TextBlock> </TabItem.Content> </TabItem> <TabItem Name="fontsize" Header="FontSize"> <TabItem.Content> <TextBlock TextWrapping="WrapWithOverflow"> FontSize property information goes here. </TextBlock> </TabItem.Content> </TabItem> <TabItem Name="fontcolor" Header="FontColor"> <TabItem.Content> <TextBlock TextWrapping="WrapWithOverflow"> FontColor property information goes here. </TextBlock> </TabItem.Content> </TabItem> </TabControl> <TabControl HorizontalAlignment="Left" Margin="126,153,0,0" VerticalAlignment="Top" > <TabItem Header="TabItem1"> <TabItem.Content> <Grid > <Button Content="Button1" Width="75" Margin="10,0,10,22" Click="Button_Click"/> </Grid> </TabItem.Content> </TabItem> <TabItem Header="TabItem2" Height="21" VerticalAlignment="Top"> <TabItem.Content> <Grid > <Button Content="Button2" Width="75" Margin="10,0,10,22"/> </Grid> </TabItem.Content> </TabItem> </TabControl> </Grid></Window>
评论