2

我对 WPF 开发很陌生,我无法找到关于如何实现看起来像这样的自定义边框/面板(或下拉菜单)的决定性答案:

Wpf 自定义下拉菜单/面板的图像

这个想法是制作一个下拉菜单/面板(带有中心箭头

4

1 回答 1

1

这应该为您指明正确的方向:

<Grid>
    <Grid.RowDefinitions>
        <RowDefinition Height="24"/>
        <RowDefinition Height="*"/>
    </Grid.RowDefinitions>

    <Grid.ColumnDefinitions>
        <ColumnDefinition Width="*" />
        <ColumnDefinition Width="24" />
        <ColumnDefinition Width="*" />
    </Grid.ColumnDefinitions>
    <Polygon
         Fill="LightGray"
        Grid.Column="1">
        <Polygon.Points>
            <Point X="12" Y="0" />
            <Point X="0" Y="24" />
            <Point X="24" Y="24" />
        </Polygon.Points>
    </Polygon>
    <ListBox Grid.Row="1" Grid.Column="0" Grid.ColumnSpan="3" />
</Grid>

当然,您可以根据需要自定义它...请注意,在此示例中,我设置了顶部中间单元格的高度和宽度以使箭头为 24X24

于 2012-12-22T13:43:24.237 回答