Where can I find the foreground and background colors for the items displayed in a raddropdownlist ?
Example:
These are the items that appear when you click the arrow for the dropdown list. I don't want to set this programmatically (unless there is no other way), but I can't seem to find the correct place to edit these in the Visual Style Builder.
Again, this is when you click the arrow and see the items in the list to choose from.
Hello.
I am studying using the trial version to apply Telrik UI for Winform to my project.
I've tried various things to apply the theme, but only the fluent theme doesn't work. The fluent dark theme or other themes will work just fine.
All versions are 2022.2.622.40.
And, there are always two versions, 2022.2.622.20 and 2022.2.622.40, but I did not install version 20. May I know why?
(I'm using Fiddler.)
Thank you.
BooKyung Oh.
Hello everyone!
I have a RadRichTextEditor with Context Menu enabled. On that menu is a button called 'Font...' and it takes you to a Font Styles window where you can change basically all the font settings.
It also has a spot to do several different styles of underline (wave, dot-dashed, dot-dot-dashed, etc). However, for my purposes the only underline that will work is the default one (like this).
Is there a way that I can modify this pop up so I can remove groups as I want?
I've included a picture of the window I'm referring too, with the section I want to hide marked.
Thank you!
HI,
Is it existed for any porperty or methd to set the layout to be consitent between Customize Layout Mode loading and Programing loading ? thank a lot !
Hello,
I have a question concerning the HTML export of the rich text editor.
I have a button where clicking on it will insert a span with the readonlyrange into my rich text editor.
My problem is when I'm trying to export it to HTML string to save it in DB I don't see my span with any special property to say that there is a readonlyrange attached to it.
Is there some way to get it when exporting into HTML format or can I export other field on the span such as the Tag property?
I would like some way when exporting into HTML that my span have some unique property to identify that this is a special read only span
Thank you.
Best regards.
In my UI I have a RadChartView, holding some ChartSeries; (in my specific case this is a PolarChart holding a PolarPointSeries).
I have an event which triggers when the user clicks one of the points in this series.
void chart_SelectedPointChanged(object sender, ChartViewSelectedPointChangedEventArgs e)
Using this event, I wish to change the graphical styling of the point that the user selects, at the moment it is selected.
It is straightforward to attain the DataPoint that is clicked by the user via
e.NewSelectedPoint;It is also straightforward to attain the collection of UIChartElements in the plotted series, via
e.NewSelectedSeries.Children;
I can edit the style of any of these plotted UIChartElements, e.g. setting the first one to some image:
e.NewSelectedSeries.Children[0].BackgroundShape.Image = new System.Drawing.Image("MyImage.png");
I then expected I could edit the graphical styling of the particular point selected by the user using the index of the selected DataPoint:
e.NewSelectedSeries.Children[e.NewSelectedPoint.Index].BackgroundShape.Image = new System.Drawing.Image("MyImage.png)
However, the resulting UIChartElement (e.NewSelectedSeries.Children[e.NewSelectedPoint.Index]) does not correspond to the selected DataPoint (e.NewSelectedPoint); it instead corresponds to one of the other DataPoints in the series.
It appears as though the indexing of e.NewSelectedPointSeries.Children does not correspond to the indexing of e.NewSelectedPoint.DataPoints.
Have I misunderstood the API? Is there a better way of accessing the UIChartElement corresponding to a selected point?
For the record, the attempted approach I outline above works correctly with a previous release of Telerik UI for WinForms (2018.1.116.40), but does not work upon upgrading to a newer version (2018.3.1016.40).
I created the ViewDefinition value of RadGridView using HtmlViewDefinition, and I want to give the Pinned property to the first, second, and third columns.
However, the result is created by duplicating three columns as in the screenshot.
How to fix it?
hi, i use imageEditor in my winform application, when i run application and try to use crop image with imageEditor the accept and cancel button doesn't shown... like attached picture. please help.
Hello everyone,
Can you please give me some advice? I want to migrate code to Telerik components; there is a class(form) thas has all ui components (textboxes, buttons, etc.) and functionality.
I need to give the user the ability to choose between a radwizard and a tabbedcontrol. But these two need to share the same functionality and ui components. because we don't want to repeat code. We've tried usercontrols, but the code that provides the functionality is so scrambled and depends on data and ui components from differect user controls?
Is there another way to do this? Maybe place the radwizard and tabbed form in a panel?
Thanks in advance,
Adriana