I have upgraded to the latest UI for WinForms release (2015.2.1104) and noticed that the pre-build assemblies that are installed have a PublicKeyToken of 5bb2a467cbec794e but when I build the UI for WinForms from source the assemblies that are produced have a PublicKeyToken of bf4391287131aaeb.
Why are the PublicKeyTokens values different? Is there a way to align the values?


Hi, Im using the GanttView control in an example application. Refer to this article http://www.telerik.com/help/winforms/ganttview-working-with-data-binding-to-database.html , I tried to find the "WeddingPlanner.mdb" database, but I can´t find it in my installation directory. How can I get it??
I'm using the UI for WinForms Q3 2015 version.
Thanks,
I create a RadMenu in a MDI Parent form dynamically. Each menu item has a tag property with a value that references a string. I also have a form that is open that has a Split Container, Panel and within the panel, a Panorama object with a PanelGroup, ready to add a tile. I would like to drag from the RadMenuItem and drop into the PanelGroup and create a tile that has a reference (can also be the Tile's tag).
I already have this working when I drag from a TreeView to create a tile, as well as dragging from a desktop shortcut... Although I can set the RadMenuItem.AllowDrag property = true, I don't see anyway to trigger and work with this...

I slightly changed your solution from here (GridView - Drag & Drop Example) to enable drag and drop inside the same grid.
Setting the AllowAutoScrollRowsWhileDragging to true, the scrolling hangs and the row can't be dropped at the desired location.
I can send you the project, if you want, but I think autoscrolling is also broken in your example. Try to add more data objects and you will see the problem.

Hi.
I have made my own Edit appointment form, and want to make a dropdownlist, just as the 'Background' selector.
I simply can't figure out, how load the background colors in the scheduler into the dropdown.
My code look like this:
Dim a As Int16
Dim list(Me.uiRadSchedulerMain.Backgrounds.Count - 1) As String
For a = 0 To Me.uiRadSchedulerMain.Backgrounds.Count - 1
Dim dataItem As New RadListDataItem()
dataItem.Text = Me.uiRadSchedulerMain.Backgrounds.Item(a).DisplayName.ToString
dataItem.Image = ??? (background of backgrounds.item(a).[Image])
dataItem.Value = Me.uiRadSchedulerMain.Backgrounds.Item(a).Id
Me.comboBackground.Items.Add(dataItem)
Next
Kindly Peter


i'm attempting to give the option to users to export all or page only, but I can't get the syntax of the statement correct.. I would have thought it to be..
spreadExporter.PagingExportOption.CurrentPageOnly = 0
spreadExporter.PagingExportOption.AllPages = 1