Select to view content in your preferred language

Vertical Toolbar

968
2
06-07-2011 04:26 AM
MichelleBauman
Emerging Contributor
Is there a built in attribute or even a creative way of making a toolbar that has the icons listed vertical instead of horizontal?
0 Kudos
2 Replies
DominiqueBroux
Esri Frequent Contributor
You can either create your own toolbar by putting your icons in a vertical stackpanel, or you can retemplate the ESRI toolbar:
- Open the project in Blend, rightclick the Toolbar and select to edit a copy of the template.
- Select the stackpanel called 'RootElement'.
- Change the orientation from Horizontal to Vertical.
0 Kudos
dotMorten_esri
Esri Notable Contributor
<StackPanel HorizontalAlignment="Left" Orientation="Vertical">
   <Button Content="Tool 1" />
   <Button Content="Tool 2" />
   <Button Content="Tool 3" />
</StackPanel>
0 Kudos