2
我很新的WPF的發展,我無法找到有關如何實現自定義邊框/面板(或下拉菜單)決定性的答案看起來是這樣的:WPF自定義邊框/面板
Image of Wpf custom drop down menu/panel
的想法是讓一個下拉菜單/面板(與中心箭頭)
任何幫助表示讚賞!
我很新的WPF的發展,我無法找到有關如何實現自定義邊框/面板(或下拉菜單)決定性的答案看起來是這樣的:WPF自定義邊框/面板
Image of Wpf custom drop down menu/panel
的想法是讓一個下拉菜單/面板(與中心箭頭)
任何幫助表示讚賞!
這應該指向你在正確的方向:
<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
感謝您的這一點,現在我只需要找出彈出組合。 – roi972