标签: c# .net wpf user-controls
如何将用户控件绑定到窗口底部的父窗口?
答案 0 :(得分:0)
如果你想将它停靠在窗口的底部,你应该使用它周围的DockPanel:
<DockPanel> <Label DockPanel.Dock="Bottom" Content="I will be docked to the bottom of the window."/> </DockPanel>