Hello,
On Telerik control , when I click the and items using mouse right click, it calls the same function of the left click & I'm unable to disable it. Please let me know if there is any property to disable the right click.
Hello
I have actually the same Problem as this guy: https://www.telerik.com/forums/themes---why-is-this-so-difficult
I've created a custom theme in a tssp file and I'm struggling applying it. As the Person in the other thread says adding it to theme Manager results in a Exception. The link in the answer says that I could just set the ThemeName Property of the control to the name of the Control but this seems neither to be working.
I can't figure out how this should be done...
Thank You for your help
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 too
hostWindow.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