0

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

4

1 回答 1

0

如果要将其停靠在窗口底部,则应在其周围使用 DockPanel:

<DockPanel>
    <Label
        DockPanel.Dock="Bottom"
        Content="I will be docked to the bottom of the window."/>
</DockPanel>
于 2012-05-16T16:27:48.710 回答