c# - dealing with DocPanel on Canvas and XAML -


i need create 3 columns (dock-able) on left side of window using xaml. window used grid base should canvas no more following code work:

    <stackpanel grid.column="0" margin="1,1,7,0">         </stackpanel>         <expander header="one"  isexpanded="true"/>         <expander header="two" isexpanded="true"/>         <expander header="three"  isexpanded="true"/>     </stackpanel> 

so i'm using container instead. however, one, two , three displayed on line line however, need have them vertically.

<dockpanel horizontalalignment="stretch" margin="0,0,0,0" width="auto">     <expander header="one" isexpanded="true"/>     <expander header="two" isexpanded="true"/>     <expander header="three" isenabled="true"/> 

my goal create toolbar on left side of window these show controls user can drag , drop onto canvas. appreciate if experts give me hints on matter too.

regards, amit

are looking visual studio docking system. try avalon dock

http://avalondock.codeplex.com/

enter image description here


Comments

Popular posts from this blog

java - Play! framework 2.0: How to display multiple image? -

gmail - Is there any documentation for read-only access to the Google Contacts API? -

php - Controller/JToolBar not working in Joomla 2.5 -