Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 WPF 应用程序中,我想在窗口中的其他一些元素下获得一个下拉菜单。展开菜单时,它会与其他控件重叠。但我需要这些控件随时保留在菜单上。
我尝试使用 ZIndex,但没有任何成功。是否有可能以某种方式在其他控件下显示下拉菜单?
感谢帮助!
您无法通过下拉菜单实现此目的,因为根据定义,它显示在当前窗口上方的单独窗口中。
因此,如果您希望某些控件出现在其他控件下,则必须仅使用普通控件,例如Grid,使它们在开始时不可见,并在需要“下拉菜单”出现时立即显示(当然之后隐藏)。
Grid