vote up 1 vote down star

I have a border with rounded corners within a canvas and want to add a clipping region to the canvas so that anything I add is clipped to the region within the border. I know that I can set the Clip property of the canvas but as the canvas and object are sized dynamically rather than having sizes assigned in the XAML, I can't figure out how to calculate the path to use. Is there some way to derive a PathGeometry from a UIElement (the border in this case)? If not what is the best way to approach this? Here is the XAML for the test page I'm working with.

<UserControl x:Class="TimelinePrototype.Page"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Grid x:Name="LayoutRoot">
	<Grid.RowDefinitions>
		<RowDefinition Height="auto" />
		<RowDefinition />
	</Grid.RowDefinitions>
	<StackPanel Orientation="Horizontal" Margin="10">
		<Button x:Name="cmdDraw" FontSize="18" Click="cmdDraw_Click" Content="Draw" Margin="0,0,5,0" VerticalAlignment="Bottom" />
		<TextBlock x:Name="txtDateRange" FontSize="18" Margin="10,0,10,10" VerticalAlignment="Bottom" />
	</StackPanel>
	<Canvas x:Name="TimelineCanvas" Grid.Row="1" HorizontalAlignment="Stretch" 
				SizeChanged="TimelineCanvas_SizeChanged">
		<Border x:Name="TimelineBorder" 
				Background="LightGray" 
				BorderBrush="Black" 
				BorderThickness="2" 
				CornerRadius="15" 
				Margin="10"
				Grid.Row="1"
				VerticalAlignment="Top">
		</Border>
	</Canvas>
</Grid>

flag

3 Answers

vote up 1 vote down

Try using the ActualHeight and ActualWidth properties

var height = TimelineCanvas.ActualHeight;
var width = TimelineCanvas.ActualWidth;
link|flag
I had thought of using those but was wondering if there might be some other, more clever way of doing this. – Steve Crane Mar 26 at 17:04
vote up 0 vote down

I ended up using this code, but would still be interested in any alternate methods.

RectangleGeometry clipRect = new RectangleGeometry();
clipRect.Rect = new Rect(TimelineBorder.Margin.Left, TimelineBorder.Margin.Top, TimelineCanvas.ActualWidth - (TimelineBorder.Margin.Left + TimelineBorder.Margin.Right), TimelineCanvas.ActualHeight - (TimelineBorder.Margin.Top + TimelineBorder.Margin.Bottom));
clipRect.RadiusX = TimelineBorder.CornerRadius.TopLeft;
clipRect.RadiusY = TimelineBorder.CornerRadius.TopLeft;
TimelineCanvas.Clip = clipRect;
link|flag
I'd have to endorse that method; if only because I've done it that way dozens of times without seeing a nicer approach. – MojoFilter Mar 26 at 17:10
vote up 0 vote down

Try blacklight

The blacklight toolpack has a rounded corner clipping tool and is free.

link|flag
Thanks, I'll check it out. – Steve Crane Apr 2 at 7:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.