I reported the issue below back in September 2017. It was scheduled for a fix in R1 2018 (here). However, it appears that the problem persists. Did it get missed or is there a setting/option that I'm missing. I think it is a rather major issue for anyone trying to put a DPI aware app together.
This is the problem:
In a DPI aware app, using the docking tool window auto-hide dramatically increases the size of any controls on the window. This can be demonstrated with a new application. Add a RadDock to the form, add a couple of tool windows and a document window, and add a few controls to either of the tool windows (label, button, treeview, property grid, etc.). Run the app as DPI aware at 150 scale. Hide a tool window. Open the tool window. When the tool window slides open all the font and control sizes have greatly increased.


Hi.
Attach an image. When user move mouse over the chart, a tooltip show to the user Value = 1. i want to change "value" text with my Custom text, like "مقدار".
how can do this ?


Hello.
I need a radcheckbox in a button.
How can i disable the border from the checkbox programaticly?
I can´t find it on the sourcecode.
Thank you.

Hi, I have a single tree list which contains several top level nodes, each node has multiple children. What I want to do is to only allow movement of nodes within only within the list of sibling nodes.
The effect that I'm after is something similar to the first animation in https://stackoverflow.com/questions/45838579/separator-line-drag-drop-tree-nodes-c-sharp-winforms.
I have set my tree view AllowDragDrop to true and this allows me to move items around however it is possible to move an existing into a sibling node and generate a sub-tree.
Is this possible and if so, how ? Also is it possible to override the drawing of the "insertion point" ?
Regards
Toby

Hi.
I want to show Custom toolTips for each item in rddlist.
i can use visualItem, but thats not suitable. visualitem.Text, only show item text. I want to set Custom Text for each item. like:
for items[0] = "text1", items[1] = "not working", items[2] = "it's too easy" and etc.
when rddlist popupOpened, and user,moving mouse on any item, tooltip must be show.

Hey,
I'm using the dock.
It is possible to move tabs out of the TabStrip.
If a user press the close-Button on the tab, I want to dock the tab back to the DocumentTabStrip.
How can I do this?
Regards, Marc
Once setting the .DataSource of a dropdownlist to a view model. How can I immediately tell the dropdownlist to select a specific value within the model?
// UI
ReferenceProjectDropDownList.DisplayMember = "Name";
ReferenceProjectDropDownList.DataSource = new ProjectsViewModel(snc.Measuring.Projects.ToList()).Projects;
if (null != project)
{
ReferenceProjectDropDownList.SelectedItem = ???
}
// view model
public class ProjectsViewModel
{
public ProjectsViewModel(List<ScanProject> projects)
{
Projects = new List<ProjectViewModel>();
projects.ForEach(p =>
{
Projects.Add(new ProjectViewModel()
{
Id = p.Id,
Name = p.Name,
});
});
}
public List<ProjectViewModel> Projects;
}
public class ProjectViewModel
{
public int Id { get; set; }
public string Name { get; set; }
}

Hi
How could I adjust in VB.NET the backcolor of all my child templates?
I mean the property equivalent to TableElement.BackColor for MasterTemplate
I point that area in my attached file
Thanks in advance
Kind regards