2

在此处输入图像描述

我是 WPF 的新手。我想创建一个类似于此图像的下拉菜单。我没有从哪个控件开始执行 ControlTemplate。

我猜它是一个带有 ContextMenu 的超链接。

4

1 回答 1

2

WPF Popup 控件正是您正在寻找的:

<Popup Name="myPopup" IsOpen="True">
    <Label Name="myLabel" Content="Language: English" 
          Background="Black" Foreground="White"/>
    <...other controls you like.../>
</Popup>
于 2013-05-27T06:12:44.350 回答