原文:
WPF入门(三)->两个几何图形合并(CombinedGeometry)
在WPF中,提供了一个CombinedGeometry对象可以使两个几何图形合并产生效果
CombinedGeometry类:表示由两个 Geometry 对象组合定义的二维几何形状。
先来看一段代码:
<
Window
x:Class
="WPF.SimpleGraph.Combine"
xmlns ="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x ="http://schemas.microsoft.com/winfx/2006/xaml"
Title ="Combine" Height ="300" Width ="300" >
< Canvas >
<
xmlns ="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x ="http://schemas.microsoft.com/winfx/2006/xaml"
Title ="Combine" Height ="300" Width ="300" >
< Canvas >
<