Hi,
I have a very small program with a radmenu and radrichtextbox to demonstrate the use of applicationCommands.
Paste commands work very nice, but i'm not able to use Cut or copy commands when i make a selection in the richtextbox. What's is wrong ?
I have a very small program with a radmenu and radrichtextbox to demonstrate the use of applicationCommands.
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition />
</Grid.RowDefinitions>
<telerik:RadMenu>
<telerik:RadMenuItem Header="Edit">
<telerik:RadMenuItem Header="Cut" Command="ApplicationCommands.Cut"/>
<telerik:RadMenuItem Header="Paste" Command="ApplicationCommands.Paste"/>
</telerik:RadMenuItem>
</telerik:RadMenu>
<telerik:RadRichTextBox Grid.Row="1"/>
</Grid>
Paste commands work very nice, but i'm not able to use Cut or copy commands when i make a selection in the richtextbox. What's is wrong ?