Declined
Last Updated: 10 Aug 2026 14:23 by ADMIN
When you start typing, the dropdown appears and then you leave the AutoCompleteBox without clicking, the cursor is not changing back to arrow.

As a workaround of the issue you could manually release the mouse capture in the Populated event handler of the control as shown below:


 private void AutoCompleteBox_Populated(object sender, System.EventArgs e)
        {
            if (Mouse.Captured is RadAutoCompleteBox)
            {
                (sender as RadAutoCompleteBox).ReleaseMouseCapture();
            }
        }
Declined
Last Updated: 10 Aug 2026 14:23 by ADMIN
The style name "+-" is a valid one, but the StyleGallery crashes because it tries to set the name as a value of a cell and it is not a valid cell value.
Declined
Last Updated: 10 Aug 2026 14:23 by ADMIN
The ChangeListStyleCommand has an event named ListStyleChangedChanged  which is never raised.
Declined
Last Updated: 10 Aug 2026 14:23 by ADMIN
The image quality is changed when pasting an image. 
Declined
Last Updated: 10 Aug 2026 14:23 by ADMIN
Declined
Last Updated: 10 Aug 2026 14:23 by ADMIN
Workaround: Bind the UpStroke and DownStroke properties of the Candlestick via custom style (which is set to the DefaultVisualStyle property) to properties from the model. Then in the setter of the Close property, can set different color depending on whether the Close is less than Open property.
Declined
Last Updated: 10 Aug 2026 14:09 by ADMIN
Trying to delete table cell formatting symbol, when track changes are on, will result in marking the text in the cell as deleted.
MS Word does not respect such delete action.
Declined
Last Updated: 10 Aug 2026 14:09 by ADMIN
Hyperlink tooltip is not changed when the HyperlinkNavigationMode property of RadRichTextBox is changed.

Workaround: Invoke radRichTextBox.ActiveEditorPresenter.RecreateUI() method just after the property value change:
this.radRichTextBox.HyperlinkNavigationMode = HyperlinkNavigationMode.Click;
this.radRichTextBox.ActiveEditorPresenter.RecreateUI();

Steps to reproduce:
1. Insert a hyperlink in RTB.
2. On button click change the HyperlinkNavigationMode.

Observe: The tooltip is not changed from Click to ... Ctrl + Click to .. and vise versa.
Declined
Last Updated: 10 Aug 2026 14:09 by ADMIN
When a RadDocking is located inside a RadTabControl and the RadPaneGroup contains only one RadPane the content is scrolled(if located inside a ScrollViewer)
Declined
Last Updated: 10 Aug 2026 14:09 by ADMIN
When the main container of a window is ScrollViewer, the caret is not kept in the view while users move it with the arrow keys.
Declined
Last Updated: 10 Aug 2026 14:09 by ADMIN
DropDownButton's DropDownContent blinks when its template and its parent's ControlTemplate are changed at runtime
Declined
Last Updated: 10 Aug 2026 14:09 by ADMIN
The SelectedTabContent is not added when the control is loaded in memory and a we try to create a ImageSource out of the UserControl hosting the TabControl
Declined
Last Updated: 10 Aug 2026 14:04 by ADMIN
When double click on the right of the ViewDefinition buttons new Appointment dialog is shown
Declined
Last Updated: 10 Aug 2026 14:04 by ADMIN
When a RadBitmap is rotated to degrees for which sine and cosine are not integers (every angle which is not 90, 180, 270 or 360) applies wrongly calculated transformations and the bitmap' size is no longer correct.

For example, rotating a bitmap to -30 and then to 30 degrees changes its size.
Declined
Last Updated: 10 Aug 2026 14:04 by ADMIN
Reproducible in the latest demo.

Create daily recurrence. Select multiple occurrences and drag them. For the first time they will be dragged. Then select exceptional (this is important!) occurrences and drag them - only the occurrence which was selected first will be dragged.
Declined
Last Updated: 10 Aug 2026 14:01 by ADMIN
BindingExpressionError occurs in situations  when the tree is virtualized and TemplateSelectors are used
Declined
Last Updated: 10 Aug 2026 13:36 by ADMIN
workaround:
public MainWindow()
{
    InitializeComponent();

    this.grid.Loaded += grid_Loaded;
}

void grid_Loaded(object sender, RoutedEventArgs e)
{
    this.grid.ChildrenOfType<Grid>().FirstOrDefault(x => x.Name == "PART_OuterGrid").RowDefinitions[1].Height = GridLength.Auto;

    var cells = this.grid.ChildrenOfType<GridViewHeaderCell>();
    foreach (GridViewHeaderCell cell in cells)
    {
        cell.ChildrenOfType<Grid>().FirstOrDefault(x => x.Name == "PART_OuterGrid").RowDefinitions[1].Height = GridLength.Auto;
    }
}
Declined
Last Updated: 10 Aug 2026 13:34 by ADMIN
When the custom map provider supports levels range other than 1 to 20 then it could affect to tiles downloading performance.
1 2 3 4 5 6