or
private void listBox_SelectionChanged(object sender, SelectionChangedEventArgs e) { ListBox lista = sender as ListBox; if (lista.SelectedItem == null) return; destino = (Location)lista.SelectedItem; this.radMap1.Center = destino; }ShowsConfirmationWindowOnDelete
property in RadScheduler, what is the counterpart of that property in ScheduleView? I noticed that Deleting events gets fired AFTER confirmation dialog is shown, so I cannot override it by e.Cancel=true...

I've got a ribbon with the standard Copy, Paste, Cut buttons on them. .
| <telerik:RadRibbonButton Text="Cut" Size="Medium" /> |
As soon as I assign a command the buttons disable. I would have expected it to simply use the built-in Cut command.
| <telerik:RadRibbonButton Text="Cut" Size="Medium" Command="ApplicationCommands.Cut"/> |
What I get however is a disabled Cut button. What am I missing?
