Hello,
I am currently creating a new style template based on the Material template (Material.tssp).
I have changed several things like PrimaryFill, Fonts etc. I have also changed the Titlebar color but after one of these changes the minimize, maximize and close icon got replaced by a location, hang-phone and questionmark icon (see this video )
Does anybody have a solution for this?
The altered .tssp-file can be downloaded here
Grtz Patrick Vossen

Is it possible add Visual Studio 2012 Blue theme? (exist only light and dark)
Or another idea, in WPF exists Visual Studio 2013 themes (light, blue, dark)
https://docs.telerik.com/devtools/wpf/styling-and-appearance/themes-suite/common-styling-appearance-visualstudio2013-theme
Is it possible add/convert these themes also to WinForms?
Good day, I'm struggling to get RadControls within CommandBarHostItems to scale at size 125%.
I've worked through your articles, applied the application manifest and set the relevant property on my main form.
Every other control is scaling as it should, but I can't get a RadCheckbox and RadMulticolumnComboBox to work?
See code below on how I set these controls:
RadCheckBox chkAutoFilter = new RadCheckBox();
chkHostAutoFilter.MinSize = new System.Drawing.Size(80, 20);
chkHostAutoFilter.HostedControl = chkAutoFilter;
RadMultiColumnComboBox cboCustomerID = new RadMultiColumnComboBox();
cboCustomerID.Name = "cboCustomerID";
cmbHostCustomerID.MinSize = new System.Drawing.Size(90, 20);
cmbHostCustomerID.HostedControl = cboCustomerID;
Telerik Version: 2018.1.116.40
Please advise.
I've an image column where sorting is invalid. I've found no info googling for a solution to disabling sort on radvirtualgrid columns.
How do I do that please?
(I've an event handler that prevents sorting on that column programatically, but I don't want to see either the little direction arrows on the column header, or a context menu)

Hello,
Is there a way to set UseMnemonic to false for the Breadcrumb?
Setting UseMnemonic to false for the linked treeview seems not be the solution.
Grtz Patrick Vossen
Hello,
in our application we use the RadDock to show some tool windows. The orginal windows are WinForms forms and so we use the following statement to show it as toolwindow:
Form f = new LogForm();hostWindow = radDockBase.DockControl(f, DockPosition.Right);hostWindow.DockState = DockState.Floating;hostWindow.CloseAction = DockWindowCloseAction.Hide;hostWindow.AllowedDockState = AllowedDockState.All ^ AllowedDockState.TabbedDocument;The window is displayed as expected (see BeforeClosing.png).
For each tool window we add a menu item with which we can close and open the window with the following code:
...//hostWindow.DockState = DockState.Hidden; <-- I've tried that toohostWindow.Close();......hostWindow.Show();...After showing the window again, the content of the window is no longer displayed (see AfterReShow.png).
How can I re-show the window and display the content?
Thanks for the help
Christoph


Hi guys,
I facing an issue on page view control for setting the automation id. Actually my RadPageview had more than 10 tabs.
While testing my application, my winium driver is not able to perform (PageviewTab)Tab Clicking operation.
Any idea how to make ?