2014-02-21 71 views
1

我想知道如何绘制超出标准WPF选项卡控件的边界?我尝试了各种ClipToBounds设置,并将我的控件插入到一个画布中,该画布在过去的网格中适用于我。样品XAML:如何透支WPF选项卡控件

<Window 
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d" x:Class="MainWindow" 
Title="MainWindow" Height="350" Width="525"> 

<Grid> 
    <TabControl HorizontalAlignment="Left" Height="50" Margin="90,31,0,0" VerticalAlignment="Top" Width="100"> 
      <Canvas Margin="10,26,-10,-26"> 
       <Ellipse Width="25" Height="25" Fill="Red" Canvas.Left="0" Canvas.Top="0"></Ellipse> 
      </Canvas> 
    </TabControl> 

</Grid> 

回答

相关问题