I found a thread on how to set the RadSpinEditor buttons size using the designer, but I haven't been able to get it to work programmatically..
radSpinTest.SpinElement.ButtonUp.MinSize.Width = 45 <--- this doesn't work because it's a readonly property
Any help would be greatly appreciated.
Thanks!

Hi,
Do you have an TextBoxEditor with masked input in RadPropertyGrid? Is there an example for do it?
Thank you!

I needed to change the radtogglebutton Breeze theme so that on toggled state it shows a green background.
I've added the theme to my winforms app project resource using theme manager, and I see the theme at design time, but when I run my application then the controls revert to the theme that's set when the application starts up.
I've put a debug message into the toggle event which returns the name of the theme for the button, this returns the correct value.
Am I missing something please?


Hi.
I'm using the Breeze theme with default values on this pageview control.
Boss says he doesn't like the black on grey appearance of the tab text as they'll be difficult to see. He wants me to change the forecolor of the selected tab to white. (I thought I'd change the theme but 5mins with the theme editor terrified me)
How can I achieve this please?

Hi,
I'd like to implement the Spreadsheet example (gridview) having UI for Winforms Q1 2015 SP1. I copied the code provided, but can't locate the Telerik.Quickstart.Wincontrols dll or Telerik.Examples.WinControls dll.
Any suggestions?
Thanks in advance!


Hello,
Do you know if it's possible to draw route directly from coordinates (precalculated with address, town stored in database) ?
I can just use WayPoint from routerequest object, but it's a argument type string ?
In BingMapsRESTToolkit project, it's possible to set coordinates directly to calculate a route ?
But I don't found options with RadMap ?
Do you know if it's possible to add this option with a legacy (inherit) or not ?
Dim oRequest As New RouteRequest()
With oRequest
.DistanceUnit = DistanceUnit.Kilometer
With .Options
.Mode = TravelMode.Driving
.Optimization = RouteOptimization.Time
.RouteAttributes = RouteAttributes.All
.RouteAvoidance = RouteAvoidance.Highways
End With
With .Waypoints
STRING NOT POINTG
End With
End With
Thank you
Best regards


Hi there!
Im working with property grid, and I need to put an image with property name.
I have achieved it, but I need give some margin betwen image and text.(See attached image)
I used that code:
Private Sub PropertyGridParams_ItemFormatting(sender As Object, e As UI.PropertyGridItemFormattingEventArgs) Handles PropertyGridParams.ItemFormatting e.VisualElement.Image = New Bitmap(ImagePath, New Size(18, 18)) e.VisualElement.ImageAlignment = ContentAlignment.MiddleRight End SubHow can I set custom image without cover the text?
Thank you!