mirror of
https://github.com/Stone-Red-Code/docs-desktop.git
synced 2026-09-07 16:06:07 +02:00
* Reset branch for WPF changes * Convert BMP to PNG; fix link-out-of-scope err * Add snippets for WPF... 6794 files!!!! * Add missing snippets * update file updated between migration * Fix paths to include * update breadcrumb and toc * fix index links * fix index links * fix index links * fix markdown
15 lines
589 B
XML
15 lines
589 B
XML
<Window
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
x:Class="SDKSample.LayoutWindow"
|
|
Title="Layout with the DockPanel" Height="143" Width="319">
|
|
|
|
<!--DockPanel to layout four text boxes-->
|
|
<DockPanel>
|
|
<TextBox DockPanel.Dock="Top">Dock = "Top"</TextBox>
|
|
<TextBox DockPanel.Dock="Bottom">Dock = "Bottom"</TextBox>
|
|
<TextBox DockPanel.Dock="Left">Dock = "Left"</TextBox>
|
|
<TextBox Background="White">This TextBox "fills" the remaining space.</TextBox>
|
|
</DockPanel>
|
|
|
|
</Window> |