hello,
i have a problem here, i want to make a multiple toolbar which works just like the toolbar in visual studio.
currently i'm doing it like this
<ToolbarTray>
<Toolbar>
<Button x:Name="A"/>
<Button x:Name="B"/>
<Button x:Name="C"/>
</Toolbar>
<Toolbar>
<Button x:Name="D"/>
<Button x:Name="E"/>
<Button x:Name="F"/>
</Toolbar>
</ToolbarTray>
now the problem is, i can move each toolbar up and down but i can never move them to the right. you see when we use visual studio we can place each of the toolbar freely in the toolbartray, 1 looks like docked in the left, and the other 1 looks like docked in the right, the other 1 we can placed below the two in the center.
so how can i achieve this?
thanks