The maximized form misses the the outer border (a few millimeters). The behavior appeared with Release 2016.2.608.20 from 2015.3.930.20.
I could reproduce the behavior with an empty form. The executable seem to have this behavior only on my computer.
See the attached images. Do you have any idea?
Starting from scratch, the SystemButton's minimize, maximize, and close are incredibly small.. Is this a glitch, or is this the starting theme for a RadTitleBar?
I feel this is a glitch. If this is not, can someone provide detailed instructions on how to get the ContextMenu items to show properly?

Hello,
I would like to know if it is possible to center the text (I have set the radtextboxitem's textalign to center but this had no effect)
Also I would like the popup to popup or close when i click on the text (I tried to do this in the click event but it didn't behave the way i was expecting).
Thank you

Hello,
I have standard control drag and drop in my app, so I have .net DragEnter, DragDrop, DragOver, etc. handlers for the RadGridView in my form. Of course, grid doesn't react properly on mouse activity over it. In my DragOver handler I want to set row under the cursor to hovered state. I found GridTableElement.HoveredRow property, but it is internal. Is there a way to programmatically make grid to set a row into howered state?



public class RapportoItem : INotifyPropertyChanged { private int _Thread; public int Thread { get { return _Thread; } set { _Thread = value; NotifyPropertyChanged("Thread"); } } public int RetryCount { get; set; } public event PropertyChangedEventHandler PropertyChanged; private void NotifyPropertyChanged(String info) { if (PropertyChanged != null) { PropertyChanged(this, new PropertyChangedEventArgs(info)); } } }Telerik.WinControls.Data.ObservableCollection<RapportoItem> result = ...radGridView1.DataSource= result;
How to not Export specified columns for each parent row child rows when exporting to excel in telerik radgridview ui winf
I a have hierarchical telerik radgridview in winform. in this radgridview master template i have a rows that each row has child rows that are null in some columns for all child rows of that parent row and not for others.
I wrote a code that only let one parent row to be expanded and when expanding that parent row show only the columns that has value at least in one child row and hide columns that its child rows are all null for that parent row with radGridView1_ChildViewExpanded event handler.
My problem is when i want to export this hierarchical telerik radgridview to excel file. what should i do in exporting to achieve to what i described, means exports only the columns that have at least one value in its child rows and not export others for each parent row.
tnx
