using System.Collections.ObjectModel;namespace ListBoxTest{ public partial class MainWindow { public MainWindow() { InitializeComponent(); DataContext = this; MyCollection = new ObservableCollection<string> { "test text 1", "test text 2", "test text 3", "test text 4", "test text 5", "test text 6" }; } public ObservableCollection<string> MyCollection { get; private set; } }}<Window x:Class="ListBoxTest.MainWindow" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" Title="MainWindow" Height="500" Width="525"> <telerik:RadListBox ItemsSource="{Binding MyCollection}"> <telerik:RadListBox.ItemTemplate> <DataTemplate> <Grid Height="50" Width="100" Background="LightBlue" telerik:DragDropManager.AllowCapturedDrag="True"> <TextBox Text="{Binding .}" VerticalAlignment="Center" HorizontalAlignment="Center" telerik:DragDropManager.AllowCapturedDrag="False" telerik:DragDropManager.AllowDrag="False"/> </Grid> </DataTemplate> </telerik:RadListBox.ItemTemplate> <telerik:RadListBox.DragDropBehavior> <telerik:ListBoxDragDropBehavior /> </telerik:RadListBox.DragDropBehavior> </telerik:RadListBox></Window>
Hello,
I'm trying to customize the style of the timeline by minimizing controls from the timeline.It will be embedded in a different control that will then perform the manipulation of zooming and scrolling.
1) I have successfully hidden the group header by modifying the TimelineItemContainer ItemsPanelTemplate TimelineItemGroupsPanel padding to be = zero
2) I have not been able to hide the small thin border item that still exists at the top of the timeline
3) I have not been able to hide the horizontal scroll bar at the bottom of the timeline.
I am using the implicit style method and have successfully completed #1.

I am trying to set theme (Fluent) AlternativeBrush into SolidColorBrush resource. I am facing error #FFF2F2F2' is not a valid value for property 'Color'.
Everything is working fine, but problem when I want to define SolidColorBrush resource from theme. This resource will be used in other templates.
For reference following is sample code what I am doing now
<SolidColorBrush Color="{telerik:FluentResource ResourceKey=AlternativeBrush}" x:Key="AlternativeBrush"/>
Hi Telerik,
I'm currently using the Outlook Template for visual studio and I'm wondering how can I change the accent color on the template?
I was to be able to use customized color hex or RGB to set colors for like accent, text etc.

Hi. I am using RadComboBox control in my project. Previously, the control was in non-editable mode (IsEditable="False") and drop functions worked fine.
<telerik:RadComboBox
IsEditable="True"
IsFilteringEnabled="True"
AllowDrop="True"
ItemsSource="{Binding Type.Items}"
DisplayMemberPath="DocumentId"
Text="{Binding Value, Mode=TwoWay}">
<i:Interaction.Behaviors>
<local:DropTargetBehavior DropCommand="{Binding DropCommand}" />
</i:Interaction.Behaviors>
</telerik:RadComboBox
When I set IsEditable to True then drop functionality has stopped working. In editable mode there is an "Input Area" overlay control and i cannot drop anything to RadComboBox. Can you suggest any working example for dropping something to RadComboBox in editable mode (IsEditable="True")?

When I switched to Fluent theme all RadRibbonButtons direct content was aligned to the left instead of centered as it was previously in Expression Dark theme. The problem is, that ContentPresenter in StackPanel named FirstRowContainer has its HorizontalAlignment property set to Left. I don't know how can I change that to Center and I need your help to fix it. Direct content of buttons is TextBlock displaying Font Glyph. Here is sample code:
<telerik:RadRibbonButton x:Name="buttonLock"
Click="ButtonLock_OnClick"
IsEnabled="{Binding IsUiUnlocked}"
Size="Large"
Text="Lock">
<TextBlock Margin="2"
FontFamily="{StaticResource TelerikWebUI}"
FontSize="24"
Foreground="#00BFE8"
Text="{StaticResource GlyphLock}" />
</telerik:RadRibbonButton>
Hi,
I would like to create two generic custom aggregators as like your CounterFunction class with the following differences
1st aggregator: it should count only not null value and not the empty strings
2nd aggreagator: it should count the distinct values (example: a a a b b c -> count =3 )
Any idea?
Thank you

Hi!
For example I took an DockingIntegration_WPF project from examples provided by Telerik. I set up grid snapping and it has worked fine, until I have rotated the shape on 90 (or 270) degrees.
After rotation, the shape does not snap to grid neither when I drag it over the diagram nor I drop it on the diagram.
But when I rotate the shape on 180 degrees , it snaps to grid well.
On attached picture you can see this bug.
Is it possible to fix this issue?