WPF路径:如何在XAML中绘制它?

时间:2014-04-18 09:29:36

标签: wpf path

我想创建一个带有非矩形标题的自定义GroupBox,如下图所示:

enter image description here

如您所见,标题的内容必须是可参数化的,因此可以在xaml中输入图像,标题和背景。

提前致谢。


感谢您的回答。

其实我想在自定义组合框中使用这个设计,所以在你的答案中如果我没有设置网格的宽度和高度(宽度= 150高度= 30),形状组件会分开,所以我想要的形状在一个独特的身体,所以很容易应用背景颜色。顺便说一句,你可以像下面的图片一样绕过角落吗?

enter image description here

1 个答案:

答案 0 :(得分:5)

试试这个

  <Grid Width="150" Height="30">
    <Border CornerRadius="15,0,0,0" Background="SkyBlue" Height="30" Width="100" HorizontalAlignment="Left"></Border>                    
    <Path Data="M 100,0 L 150,40 L 100 40 Z" Fill="SkyBlue"></Path>
    <TextBlock Text="&#xE161;" FontFamily="Segoe Ui Symbol" Margin="10,0,0,0" FontSize="20" ></TextBlock>
    <TextBlock Text="Configuration" HorizontalAlignment="Center" VerticalAlignment="Center"></TextBlock>
</Grid>

<强>解释

我使用了border作为border具有cornerRadius属性。

<Border CornerRadius="15,0,0,0" Background="SkyBlue" Height="30" Width="100" HorizontalAlignment="Left">

enter image description here

路径数据

  <Path Data="M 100,0 L 150,40 L 100 40 Z" Fill="SkyBlue"></Path>

enter image description here

使用坐标系,我使用起始点M 100,0作为边界是100,我使用40作为数据中的路径高度,150作为网格总网格宽度。和 Z 用于关闭路径数据。 enter image description here

最终输出

enter image description here

<强>更新 您可以使用视图框按照要求缩放此图形,我也添加了圆形曲线

第一种方法

<Viewbox>
<Grid Width="150" Height="30">
    <Border CornerRadius="20,0,0,0" Background="SkyBlue" Height="30" Width="103" HorizontalAlignment="Left"></Border>
    <Path Name="myPathShape" Fill="SkyBlue" >
        <Path.Data>
            <EllipseGeometry x:Name="MyEllipseGeometry"  Center="90,45" RadiusX="40" RadiusY="50"  />
        </Path.Data>        
    </Path>
    <TextBlock Text="&#xE161;" FontFamily="Segoe Ui Symbol" Margin="10,0,0,0" FontSize="20" ></TextBlock>
    <TextBlock Text="Configuration" HorizontalAlignment="Center" VerticalAlignment="Center"></TextBlock>
</Grid>
</Viewbox>

第二种方法

    <Viewbox>
    <Grid Width="150" Height="30">
        <Border CornerRadius="15,0,0,0" Background="SkyBlue" Height="30" Width="103" HorizontalAlignment="Left"></Border>
        <Path Data="M98.625,0.25 C104.076,-1.14832 109.448,2.02746 114.75,9.25 L130.125,29.8739 L102.25,29.9989" Fill="SkyBlue" HorizontalAlignment="Left" Height="30.073" Margin="98.625,-0.073,0,0" Stretch="Fill" UseLayoutRounding="False" VerticalAlignment="Top" Width="31.5"/>
        <TextBlock Text="&#xE161;" FontFamily="Segoe Ui Symbol" Margin="10,0,0,0" FontSize="20" ></TextBlock>
        <TextBlock Text="Configuration" HorizontalAlignment="Center" VerticalAlignment="Center"></TextBlock>
    </Grid>      
</Viewbox>