DockPanel停靠模版
<pre><code class="language-csharp">&lt;DockPanel&gt;
&lt;Button DockPanel.Dock=&quot;Top&quot; Content=&quot;1&quot; Background=&quot;Pink&quot; Height=&quot;66&quot;&gt;&lt;/Button&gt;
&lt;Button DockPanel.Dock=&quot;Bottom&quot; Content=&quot;2&quot; Background=&quot;Yellow&quot; Height=&quot;81&quot;&gt;&lt;/Button&gt;
&lt;Button DockPanel.Dock=&quot;Left&quot; Content=&quot;3&quot; Background=&quot;Azure&quot; Width=&quot;50&quot; Height=&quot;auto&quot;&gt;&lt;/Button&gt;
&lt;Button DockPanel.Dock=&quot;Right&quot; Content=&quot;4&quot; Background=&quot;Aqua&quot; Height=&quot;auto&quot; Width=&quot;53&quot;&gt;&lt;/Button&gt;
&lt;Button Content=&quot;5&quot;&gt;&lt;/Button&gt;
&lt;/DockPanel&gt;</code></pre>