Tabbed MDI and toolbar

Ribbon for WPF Forum

Posted 16 years ago by Willie
Version: 4.5.0486
Avatar
I want to create a Tabbed MDI application where a toolbar is located at the left side. This toolbar is always at that position and can not be resized.

At this moment i use a splitcontainer, it is possible to use a different container which is nog capable of resizing?



<docking:DockSite Name="MainDockSite">
<docking:SplitContainer>
<docking:ToolWindowContainer> </docking:ToolWindowContainer>

<docking:TabbedMdiHost> </docking:TabbedMdiHost>
</docking:SplitContainer>

Comments (2)

Posted 16 years ago by Actipro Software Support - Cleveland, OH, USA
Avatar
Willie,

Why not something like this:
<DockPanel>
    <ToolBar DockPanel.Dock="Left" />
    <docking:DockSite>
        <docking:Workspace>
            <docking:TabbedMdiHost />
        </docking:Workspace>
    </docking:DockSite>
</DockPanel>


Actipro Software Support

Posted 16 years ago by Willie
Avatar
that did the trick.
thanks.
The latest build of this product (v25.1.0) was released 27 days ago, which was after the last post in this thread.

Add Comment

Please log in to a validated account to post comments.