<p>Hi,</p>
<p> </p>
<p>I have the following XAML code:</p>
<p> </p>
<p><dock:LayoutPanel Orientation="Vertical"></p>
<p> <dock:LayoutDocumentPane DockHeight="200"></p>
<p> <dock:LayoutDocument Title="Doc 1"/></p>
<p> <dock:LayoutDocument Title="Doc 2"/></p>
<p> </dock:LayoutDocumentPane></p>
<p> <dock:LayoutDocumentPane></p>
<p> <dock:LayoutDocument Title="Doc 3"/></p>
<p> </dock:LayoutDocumentPane></p>
<p></dock:LayoutPanel></p>
<p> </p>
<p>However, both panes are displayed the same height initially.</p>
<p> </p>
<p>Regards,</p>
<p>Jecho</p>
Comments: ** Comment from web user: adospace **
<p> </p>
<p>I have the following XAML code:</p>
<p> </p>
<p><dock:LayoutPanel Orientation="Vertical"></p>
<p> <dock:LayoutDocumentPane DockHeight="200"></p>
<p> <dock:LayoutDocument Title="Doc 1"/></p>
<p> <dock:LayoutDocument Title="Doc 2"/></p>
<p> </dock:LayoutDocumentPane></p>
<p> <dock:LayoutDocumentPane></p>
<p> <dock:LayoutDocument Title="Doc 3"/></p>
<p> </dock:LayoutDocumentPane></p>
<p></dock:LayoutPanel></p>
<p> </p>
<p>However, both panes are displayed the same height initially.</p>
<p> </p>
<p>Regards,</p>
<p>Jecho</p>
Comments: ** Comment from web user: adospace **
LayoutDocument only supports proportional width/height. i.e. try set DockHeight="2*" to make the first document 2 times bigger than second one.
Thanks,
Ado