I want my context menu item to have Text on left and keyboard shortcut on right. I dont want to give fixed width as my Text size can increase/decrease based on localized string
I tried putting Grid but the Width of the Grid is not getting 100% of the Item.
Is there any way we can add additional column to context menu item just as image column so it always come on right seperate from header?
Or is there any solution to this problem?
I tried putting Grid but the Width of the Grid is not getting 100% of the Item.
<telerik:RadMenuItem>
<telerik:RadMenuItem.Header>
<Grid >
<Grid.ColumnDefinitions>
<ColumnDefinition Width="1*"/>
<ColumnDefinition Width="Auto"/>
</Grid.ColumnDefinitions>
<TextBlock Text="Bigger Globalizeddddddddddd TExt" />
<TextBlock Text="Shift + Insert" Grid.Column="1" />
</Grid>
</telerik:RadMenuItem.Header>
<telerik:RadMenuItem.Icon>
<Image Source="someicon"/>
</telerik:RadMenuItem.Icon>
</telerik:RadMenuItem>
Is there any way we can add additional column to context menu item just as image column so it always come on right seperate from header?
Or is there any solution to this problem?