I have an application that on the main form (MainForm.cs) it is not honoring the following:
FormElement.TitleBar.MaximizeButton.Enabled = false;FormElement.TitleBar.MaximizeButton.Visibility = ElementVisibility.Collapsed;It does honor it not being enabled, but hiding altogether is not working.
If I edit the form properties in the Proerties Window, I can see it collapse. Running the application for the first time seems to undo this, but there is no code that explicitly sets its visibility back to ElementVisibility.Visible.
I have other forms with in the app that have it disabled without issue.
Help

Hi!
Which action can I check after the users clicked on: " * Click here to add new row " and filled the collums, please?
The first collum is readonly because its a ID, but the others must be filled to execute the action.
I can't find the solution.
Thank you!

iam trying to upload some file on a server and i did it async it works just fine but i want to show the progress of the uploading on progress bar that i embed in a listview using this thread
i update the progress bar value on event progresschanged that i create for uploading this is the code am using
UploaderService ser = new UploaderService();radListView1.Items.Add("1", "Test Video", "", "", 0, "");ser.Authenticate("username", "password");Uploader up = new Uploader(ser, @"C:\Users\public\Downloads\Video\E");up.ProgressChanged += ((ss, rr) =>{ var PercentComplete = (rr.Progress * 100.0f) / up.Size; radListView1.Items[0][4] = Convert.ToInt32(PercentComplete);});also i found a workaround but theres any other way withou making a loop while
while (true){ var PercentComplete = (up.Progress * 100.0f) / up.Size; radListView1.Items[0][4] = Convert.ToInt32(PercentComplete); radListView1.RootElement.UpdateLayout(); radListView1.Refresh(); if (PercentComplete == 100) { break; }}
How can I change left border width and color with the following code:
public class MyBorderPrimitiveSElement : RadElement { protected override void CreateChildElements() { BorderPrimitive borderPrimitive = new BorderPrimitive(); borderPrimitive.Class = "MyBorderPrimtiveClass"; borderPrimitive.BoxStyle = BorderBoxStyle.SingleBorder; borderPrimitive.Width = 3; borderPrimitive.ForeColor = Color.Red; borderPrimitive.GradientStyle = GradientStyles.Solid; this.Children.Add(borderPrimitive); base.CreateChildElements(); } }
Hello,
Can we add icon to right-click context menus' left side? If yes, how?
Kind regards,
Mehmet.

In my photoshop image I have put together a wish. Is this possible with Telerik?
1, the top of the page - the year, month, week number and the date.
2, where it is Text1, Text2, etc. to have free text and locked to the top, no scrollbar.
3, Be able to have multiple tasks on the same line.
4, can have different texts in the Title and tasks

Hi,
I am trying to clear formatting by using below command:
ClearFormattingCommand command = new ClearFormattingCommand(cEditor.RichTextBoxElement.ActiveEditor);command.Execute();However, font and size (bigger) different that set by:
private void SetDef(RadDocumentEditor editor){ editor.ChangeFontFamily(new Telerik.WinControls.RichTextEditor.UI.FontFamily("Tahoma")); editor.ChangeFontSize(Unit.PointToDip(10)); editor.ChangeFontStyle(Telerik.WinControls.RichTextEditor.UI.FontStyles.Normal); editor.ChangeFontWeight(Telerik.WinControls.RichTextEditor.UI.FontWeights.Normal); editor.ChangeParagraphSpacingAfter(0);}

Hi,
I would like to export a:
gridview, chartview
gridview, chartview
in this format like in my attached file to an Excel. How can I go about accomplishing this with Telerik Winform C#?

Hi,
How to hide caret?
I want to stay with selection text possibility but without blinking caret.