我是 WPF 的新手。我想创建一个类似于此图像的下拉菜单。我没有从哪个控件开始执行 ControlTemplate。
我猜它是一个带有 ContextMenu 的超链接。
WPF Popup 控件正是您正在寻找的:
<Popup Name="myPopup" IsOpen="True">
<Label Name="myLabel" Content="Language: English"
Background="Black" Foreground="White"/>
<...other controls you like.../>
</Popup>