将用户控件绑定到父窗口

时间:2012-05-16 15:31:00

标签: c# .net wpf user-controls

如何将用户控件绑定到窗口底部的父窗口?

1 个答案:

答案 0 :(得分:0)

如果你想将它停靠在窗口的底部,你应该使用它周围的DockPanel:

<DockPanel>
    <Label
        DockPanel.Dock="Bottom"
        Content="I will be docked to the bottom of the window."/>
</DockPanel>