Trying to migrate from RadDragAndDropManager to DragDropManager.
Below is my existing code :
RadDragAndDropManager.AddDragQueryHandler(this.gvDocumentToAttach, OnDragQuery);
RadDragAndDropManager.AddDragInfoHandler(this.gvDocumentToAttach, this.OnDragInfo);
private void OnDragQuery(object sender, DragDropQueryEventArgs e)
{ e.QueryResult = true; e.Handled = true; }
private void OnDragInfo(object sender, DragDropEventArgs e) {
IEnumerable draggedItems = e.Options.Payload as IEnumerable;
if (e.Options.Status == DragStatus.DragInProgress)
{ TreeListViewDragCue cue = new TreeListViewDragCue();
cue.ItemsSource = draggedItems;
e.Options.DragCue = cue; } }
Wanted to know the corresponding options available in DragDropManager.
SortDescriptor icon is not coming during the loading of the GridViewcolumn.
Hi,
I am able to create and run WPF applications using Telerik just fine, but when I run one through a 3rd party application launcher (Bloomberg) I am getting a XmlParseException saying "The invocation of the constructor on type 'Telerik.Windows.Controls.RadChart' that matches the specific.."
The inner exception is a SecurityException. I am guessing the 3rd party interferes but I am wondering if there's anything I can do to get around this with how I use or where I place the telerik .dlls?
Thanks,
Fredrik
AddLink works very slow.
what to do to improve the performance?
Good morning,
In an application we have multiple RadRibbonView, I want to know if it's possible to create the Backstage control as UserControl and attach it to any of our RadRibbonView.
Thanks
Hi,
The RadOpenFolderDialog looks like a nice replacement for the FolderBrowseDialog but you cant create folders? Is that something that is planned for the future?
cheers,
Simeon.
Hello,
how can I set the color variation of the new Office2016 theme to Colorful, Black or Light?
For other themes I can use something like:
VisualStudio2013Palette.LoadPreset(VisualStudio2013Palette.ColorVariation.Blue);
But the LoadPreset() is not available for Office2016.
Greetings
Raul
Hi All,
When we use GroupRenderMode = Flat and ColumnAggregatesAlignment=NextToGroupKey together makes the application freeze while user grouping the gridview. Our gridview has 3K rows and 15 columns.
When we remove ColumnAggregatesAlignment property, everything is fine. But the aggregates looking very ugly at headers.
Is there any workaround about that ?
Thank you.