Hi,
We are using XamMenu as our item selection where we can have multiple level of hierarchy. We need to show a dropdown control button to make it look like other dropdowns ( we are using XamComboEditor for other selection).
So how can we add a button like dropdown in right of Menu/Menu Item.
Thanks
Hi Elena,
Thanks for the followup, I am not asking about some arrow in child menu, i want to show arrow button like dropdownlist. Please refer to attached image for more details.
Hello Imran,
Thank you for the screenshot. In order to show such drop down arrow you can just add some picture or path in the Header of the first XamMenuItem as follows:
<ig:XamMenuItem.Header>
<StackPanel Orientation="Horizontal">
<TextBlock>Import / Export</TextBlock>
<Path Data="M0.877496,0.8775804 L6.1224194,6.1223941 L0,7 z" Fill="Black" HorizontalAlignment="Left" Height="8" RenderTransformOrigin="0.5,0.5" Stretch="Fill" VerticalAlignment="Top" Width="8" UseLayoutRounding="False" Margin="8 2 0 0">
<Path.RenderTransform>
<CompositeTransform Rotation="-45" TranslateX="-0.2" TranslateY="0.4"/>
</Path.RenderTransform>
</Path>
</StackPanel>
</ig:XamMenuItem.Header>
Please let me know if you need any further assistance on this matter.
I was just wondering did you have a chance to try my suggestion. If you still need any assistance on the matter, please do not hesitate to ask.