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.
如何将用户控件绑定到窗口底部的父窗口?
如果要将其停靠在窗口底部,则应在其周围使用 DockPanel:
<DockPanel> <Label DockPanel.Dock="Bottom" Content="I will be docked to the bottom of the window."/> </DockPanel>