I have a RadSplitButton whose dropdown content is a RadListBox of 3 strings. They are
The user clicks the dropdown, chooses a new string and it becomes the current item.
It works fine until the user clicks an item with the underscore character. When that happens, the application hangs and the call-stack show it inside of an event handler: RadSplitButton.CloseAllPopupsToParent.
I noticed also that the name of the item in the button does not show the underscore character. I figured that this was because I was using a Label control instead of a TextBlock so I changed the ContentTemplate to instead use a TextBlock. Not only did this make the underscore show, but it also removed the hang.
I understand why the underscore would not show with Label but it should not hang an application.
I've attached a small sample project to illustrate the problem. Start the app, bring up the dropdown and choose the second or third items in the list. The app will hang.
Change the ContentTemplate's primitive to a TextBlock and it will not hang in this case.

Hi Guys,
We're using a behaviour class that is driven by the DragDropManager, hooking into some of the events, namely GiveFeedback and DragOver.
I'd like to change the cursor to a blocked symbol if the control we're dragging is hovered over another control of the same type.
Within the GiveFeedback event, we're unable to determine what control we're currently hovering over. Instead we tried using the OnDragOver event, where we are able to establish the current position but unable to change the cursor.
Is there any other way to change the cursor without the GiveFeedbackEventArgs?
Thanks

Hello,
I would disable to double-click event to maximize a RadWindow.
I hope you can help to realize that.
Many thanks
After upgrading to 2021.3, I could not change the accent color from Fluent Theme anymore.
I've checked and noticed that the problem is with the MaterialAssist, that is not using the color set in the AccentColor of the FluentPalette.
My code has always been like this:
FluentPalette.Palette.AccentColor = (Color)dicEntry.Value;
And it has always worked (I have an old version with the older components and it still works), but now I don't know what to do to fix it.
I want to change DateTime.Now format like MM/dd/yyyy throughout application. so please help me out.
Thanks & Regards
Murugan M
Hi,
I would be happy if you could help me how to download RadBarcodeQR as an image?
Thanks.

Hello, I'm using the filtering dropdown window (appearing when clicking the funnel icon) and I want to change the behaviour behind the controls.
For example : I'd like the filter to apply only when clicking the "Filter" button and not directly when checking the checkboxes, the problem is that I have no idea where to change that.
The header of the SW is visible but there nothing in the content area, bank white not even the no appointments text.
Attaching sample project and image
App.xaml:
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/Themes/System.Windows.xaml"/>
<ResourceDictionary Source="/Themes/Telerik.Windows.Controls.xaml"/>
<ResourceDictionary Source="/Themes/Telerik.Windows.Controls.Input.xaml"/>
<ResourceDictionary Source="/Themes/Telerik.Windows.Controls.Navigation.xaml"/>
<ResourceDictionary Source="/Themes/Telerik.Windows.Controls.ScheduleView.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
UC:
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" >Is there anything I am doing wrong?
Thank you.