我想知道如何超越标准WPF标签控件的界限?我已经尝试了各种ClipToBounds设置并将我的控件插入到画布中,这对我来说过去曾经使用过网格。示例XAML:
<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>
答案 0 :(得分:0)
这是一篇旧帖子,但这个答案为我解决了这个问题。您可以使用此模板,只需将Grid的ClipsToBounds更改为False。 https://zamjad.wordpress.com/2010/05/05/use-different-panel-in-tab-control/