Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic Using Dock problems (Read 5207 times)
jackalexander
YaBB Newbies
*
Offline


I love YaBB 1G - SP1!

Posts: 11
Joined: Sep 24th, 2011
Using Dock problems
Sep 24th, 2011 at 6:02am
Print Post  
Hi,
Have just started using MindFusion and started with a simple dock project.  The given sample works fine, but I want to do it in XAML.  I can't see why the following does not work - can anyone help please?

( I expect to see an output panel at the bottom and two docked panels to the left.  But the two left panels are not docked together). 

           <ui:DockItem Header="Toolbox"
                        Name="toolboxwindow"
                        CanDock="True"
                        Priority="1">
               <ListBox></ListBox>
           </ui:DockItem>
           <!-- bottom output window -->
           <ui:DockItem Dock="Bottom"
                        Header="Output"
                        Name="outputwindow"
                        Priority="2">
               <ScrollViewer HorizontalScrollBarVisibility="Auto"
                             VerticalScrollBarVisibility="Auto">
                   <Border>
                       <TextBlock></TextBlock>
                   </Border>
               </ScrollViewer>
           </ui:DockItem>
           <!-- docked to toolbox -->
           <ui:DockItem Header="Resources"
                        Name="resourcewindow"
                        DockTarget="{Binding ElementName=toolboxwindow}"
                        Priority="3">
               <ListBox></ListBox>
           </ui:DockItem>
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: Using Dock problems
Reply #1 - Sep 24th, 2011 at 10:15am
Print Post  
Hi,

Docking items together did not work from Xaml indeed. On the private messages page you can find a new MindFusion.UI.Wpf.dll build that should fix that.

I hope that helps,
Stoyan
  
Back to top
 
IP Logged
 
jackalexander
YaBB Newbies
*
Offline


I love YaBB 1G - SP1!

Posts: 11
Joined: Sep 24th, 2011
Re: Using Dock problems
Reply #2 - Sep 25th, 2011 at 8:20am
Print Post  
Thnaks, but how do I get to the private messages page please. ???
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: Using Dock problems
Reply #3 - Sep 25th, 2011 at 9:56am
Print Post  
There is a link to it at the top of the forum page, saying that you have a message.
  
Back to top
 
IP Logged
 
jackalexander
YaBB Newbies
*
Offline


I love YaBB 1G - SP1!

Posts: 11
Joined: Sep 24th, 2011
Re: Using Dock problems
Reply #4 - Sep 25th, 2011 at 12:30pm
Print Post  
Ah - missed that - thank you
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint