Hi everyone,
We're trying to add a menu that looks like the context menu in one of the docking panels in our application. In order to get an idea of what we're trying to achieve, think of it like this - when you click on a drop down button and get a context menu you essentially get a list of action that you can execute. We want this list of actions to appear on the left side of our application without requiring the clicking of any button or menu. So, we did this:
<telerik:RadPane CanUserClose="False"> |
<telerik:RadContextMenu ItemsSource="{Binding AllItems}" Height="200"> |
<telerik:RadContextMenu.ItemTemplate> |
<DataTemplate> |
<telerik:RadMenuItem |
Header="{Binding Title,Mode=OneWay}" |
Command="{Binding ShowTask}" |
/> |
</DataTemplate> |
</telerik:RadContextMenu.ItemTemplate> |
</telerik:RadContextMenu> |
</telerik:RadPane> |
The menu appears and is functional, however the text gets cut off after roughly 100 pixels.
Anyone familiar with this behavior? Any solution to this or another way to achieve a similar effect?
Thanks,
yonadav