Hi,
I'm creating an MDI form and the layout are a toolwindow on the left and a documentwindow on the right. The application is using XBAP.
The problem is when i launch the application, the width of the toolwindow is very very small and i can't change the width even though i already using docking:DockSite.ControlSize in the ToolWindowContainer tag.
But, when i create the app using WPF, it works fine as expected.Do you know why it behaves like this? can the component works the same in WPF and also in XBAP?
Thanks.
Danang.
I'm creating an MDI form and the layout are a toolwindow on the left and a documentwindow on the right. The application is using XBAP.
The problem is when i launch the application, the width of the toolwindow is very very small and i can't change the width even though i already using docking:DockSite.ControlSize in the ToolWindowContainer tag.
But, when i create the app using WPF, it works fine as expected.
<docking:DockSite>
<docking:SplitContainer>
<docking:ToolWindowContainer Name="leftTabContainer" docking:DockSite.ControlSize="500,100">
<docking:ToolWindow Title="Folder Tree">
</docking:ToolWindow>
</docking:ToolWindowContainer>
<docking:Workspace>
<docking:TabbedMdiHost x:Name="tabbedMdiHost">
</docking:TabbedMdiHost>
</docking:Workspace>
</docking:SplitContainer>
</docking:DockSite>
Thanks.
Danang.