I have a RadComboBox thats bind to an Enum list like so
<telerik:RadComboBox HorizontalAligment="Streatch"
x:Nmae="RadComboBox"
HorizontalAligmentContent="Left"
Margin ="0 0 10 0"
StayOpenOnEdit="True"
AllowMultipleSelection= "True"
ItemSource="{Binding SignalTypes}"
behaviors:SelectedItemsBinding.SourceList = "{Binding SelectedSignalTypes}"
BorderThickness ="1"
VerticalContentAligment="Center"
CanAutocompleteSelectItems="True"
EmptyTexy =" Select Signal Type"
TextSearchMode="Contains"
>
<telerik:RadComboBox.MultipleSelectionBoxTemplate>
<DataTemplate>
<TextBlock Text="{Binding ElementName=RadComboBox , Path=SelectionBoxItem, Converter={StaticResource EnumValueToDisplayTextConverter}"/>
</DataTemplate>
</telerik:RadComboBox.MultipleSelectionBoxTemplate>
</telerik:RadComboBox>
Where SourceList is MultiSelector and EnumValueToDisplayTextConverter is a IValueConverter which convert from Enum to its corresponding DescriptonAttribute
My Problem is that in the converter value I'm a getting a string list, separated by the separator (i.e item1, item2, etc.)
and im excepting 1 item inside my convertor, therefore my converter failed and I don't see any items at all at SelectionBox
i tried to use ItemsControl inside the template but for some reason i was getting 1 letter(char) of the Enum each time
P.S
I know i can create a new convertor and solve the problem, but i prefer not to
P.S2
I cant change my convertor

<tk:RadCarousel x:Name="OtherScanGallery"
ItemsSource="{Binding OtherScansView}"
VerticalContentAlignment="Top"
IsSynchronizedWithCurrentItem="True"
IsVisibleChanged="OtherScanGallery_OnIsVisibleChanged"
SelectionChanged="OtherScanGallery_OnSelectionChanged"
Loaded="OtherScanGallery_OnLoaded"
SelectedItem="{Binding ElementName=Root, Path=DataContext.SelectedOtherScan, Mode=TwoWay}"
>
private void OtherScanGallery_OnLoaded(object sender, RoutedEventArgs e)
{
RadCarouselPanel? panel = null;
if (sender is not RadCarousel car)
Log.Debug($"Gallery loaded but no carousel");
elseif (null == (panel = car.FindCarouselPanel()))
Log.Debug($"Gallery loaded but no panel");
else
Log.Debug($"Gallery fully loaded");
}
private void OtherScanGallery_OnIsVisibleChanged(object sender, DependencyPropertyChangedEventArgs e)
{
var panel = OtherScanGallery.FindCarouselPanel();
if (null == panel )
Log.Error("No panel after visible changed.");
}
Hi
Current scenario I am trying to fix is we are wanting to make use of the minimization feature, but disable the double click toggling the minimization. Limiting the minimization toggle to only the Minimize button (or a custom context menu).
I have tried using the PreviewMouseDoubleClick event which works at a first glance, however it ends up being that a triple click will now minimize.
Other less successful attempts are disabling minimization and only enable it before the ribbon would be minimized or un minimized. This would mean more control over when the ribbon is minimized but would require more effort in getting all aspects of the minimization working.
Any assistance would be appreciated. It doesnt feel like too complicated of a problem but struggling with it none the less

Hi,
I would like to use windows11 theme in my application, but when apply the theme every buttons in the toolbars are loaded of large padding and large margin.
Since I don't like this layout I can change it setting properties inside every button, but if I try to setting a style it is ignored.
I think that toolbar apply a style and overwrite my one.
Can I modify the layout without change every button in my application?
Thank you
Luigi
HI Team,
I wanted to override the theme of RadDocking Control.
I'm using DocumentHost and RadDocumentPane with properties IsDockable="False" CanFloat="False" CanUserClose="False" CanUserPin="False" but after that in the application Border is coming with thickness "2" .
I used snoop tool where if I set this thickness to 0 then border goes away but when I make changes in RadDockingDocument Style BorderLayer3 control to 0 it doesn't work .
Please help me to remove the border in case we use DocumentHost.
<telerik:RadDocking.DocumentHost>
<telerik:RadSplitContainer Margin="0,0,0,0" BorderThickness="0" Padding="0">
<telerik:RadPaneGroup BorderThickness="0" >
<telerik:RadDocumentPane Style="{StaticResource LayoutRadDocument}" PaneHeaderVisibility="Collapsed" telerik:RadDocking.SerializationTag="AnotherDocPane" Background="Transparent" Margin="0,0,0,0" BorderThickness="0" Padding="0" Header="DocPane" Visibility="Collapsed" IsDockable="False" CanFloat="False" ContextMenuTemplate="{x:Null}" CanUserClose="False" CanUserPin="False">
<Grid x:Name="RighHandColumn">Please look into the SS.
Hi Team,
We are using RadPdfViewer in .net 6 WPF application. It is failing to load 3D PDF content. We found the very old thread about this feature from around 2013 and it says this feature is not supported. Is there any option to show the 3D content in latest PDF control or any plans to release this functionality in near future ?
Thanks in Advance.
