简体   繁体   中英

Bind User Control To Parent Window

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

If you want to dock it to the bottom of the window, you should use a DockPanel around it:

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM