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.
是否可以采用在主窗口中创建的控件以及在切换视图时...使其 zindex 位于顶部以显示在视图顶部?
我尝试玩 ZIndex 但没有运气。
ZIndex是一个 Canvas 属性,因此它不适用于其他面板类型,如 Grid 等。如果您需要它出现在顶部,您可以让控件继承自或放置在Popup.
Popup
或者,如果您将它添加到主窗口 XAML 的最底部,那么它应该呈现在顶部。
你必须尝试 DockPanel。
<DockPanel LastChildFill="True"> <TextBlock DockPanel.Dock="Top" Background="OliveDrab" Foreground="Cornsilk" FontFamily="Veranda" FontSize="20" TextAlignment="Center"> </DockPanel>