or
<telerik:RadHorizontalBulletGraph Width="150" Height="20" QuantitativeScaleVisibility="Collapsed" FlowDirection="LeftToRight" FeaturedMeasure="{Binding Input0TimeLast}" ComparativeMeasure="{Binding Auftrag.ZyklusIstSoll}"> <telerik:RadHorizontalBulletGraph.QualitativeRanges> <telerik:QualitativeRange Brush="Red" Value="{Binding ZyklusErrorBound}" /> <telerik:QualitativeRange Brush="Yellow" Value="{Binding ZyklusWarningBound}" /> <telerik:QualitativeRange Brush="Green" Value="{Binding ZyklusOkBound" /> </telerik:RadHorizontalBulletGraph.QualitativeRanges></telerik:RadHorizontalBulletGraph>public int ZyklusErrorBound{ get { var x = this.Auftrag.ZyklusIstSoll - this.Auftrag.ZyklusIstToleranz; return x; }}public int ZyklusWarningBound{ get { var x = this.Auftrag.ZyklusIstSoll - (this.Auftrag.ZyklusIstToleranz / 2); return x; }}System.Windows.Data Error: 2 :
Cannot find govening FrameworkElement or FrameworkContentElement for
target element. BindingExpression:Path=ZyklusWarningBound;
DataItem=null; target element is 'QualitativeRange' (HashCode=7579691); target property is 'Value' (type 'Double')System.Windows.Data Error: 2 : Cannot find governing FrameworkElement or FrameworkContentElement for target element. BindingExpression:Path=ZyklusErrorBound; DataItem=null; target element is 'QualitativeRange' (HashCode=7579691); target property is 'Value' (type 'Double') 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?