Hello,
How do i make the item appear only once in the popup when the theme is Desert?
1 - Without Theme
2 - Desert Theme
Code:
List<TecnicoServicoInfo> listaTecnicos = new List<TecnicoServicoInfo>();
TecnicoServicoInfo tec = new TecnicoServicoInfo();
tec.CdFuncionario = -1;
tec.DsFuncionario = " ";
TecnicoServicoInfo tec1 = new TecnicoServicoInfo();
tec1.CdFuncionario = 80;
tec1.DsFuncionario = "robsu";
TecnicoServicoInfo tec2 = new TecnicoServicoInfo();
tec2.CdFuncionario = 1558;
tec2.DsFuncionario = "joelssu";
TecnicoServicoInfo tec4 = new TecnicoServicoInfo();
tec4.CdFuncionario = 333;
tec4.DsFuncionario = "TESTE UM NOME MAIOR QUE TODOS OS OUTROS PARA VER O TEMA";
listaTecnicos.Add(tec);
listaTecnicos.Add(tec2);
listaTecnicos.Add(tec1);
listaTecnicos.Add(tec4);
listaTecnicos = listaTecnicos.OrderBy(x => x.DsFuncionario).ToList();
ddlTecnico.DropDownStyle = RadDropDownStyle.DropDown;
ddlTecnico.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
ddlTecnico.DropDownListElement.AutoCompleteSuggest.SuggestMode = SuggestMode.Contains;
ddlTecnico.Items.Clear();
ddlTecnico.DescriptionTextMember = "DsFuncionario";
ddlTecnico.ValueMember = "CdFuncionario";
ddlTecnico.DisplayMember = "DsFuncionario";
ddlTecnico.DataSource = listaTecnicos;
ddlproxima.DropDownStyle = RadDropDownStyle.DropDown;
ddlproxima.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
ddlproxima.DropDownListElement.AutoCompleteSuggest.SuggestMode = SuggestMode.Contains;
ddlproxima.Items.Clear();
ddlproxima.DescriptionTextMember = "DsFuncionario";
ddlproxima.ValueMember = "CdFuncionario";
ddlproxima.DisplayMember = "DsFuncionario";
ddlproxima.DataSource = listaTecnicos;
ddlproxima.AutoSizeItems = false;
ddlproxima.AutoSize = false;
Telerik version: 23.2.718
Thank You!
Hi, how can I change the RadTaskBoard drag and drop fill color? I would like to set it to teal for example rather purple. I believe that will fix a problem in my RadGridView when in Drag and Drop mode as well.
I am using VisualStudio2022Dark theme.
Hi, I am customizing the theme VisualStudio2022Light. I have changed the purple color to the teal. However, I am not able to change the background and selected row in the theme.
When I run my application, it is still in purple.
I found a similar issue where I couldn't find where I can change the close button during click in the RadForm.
Where are located the .tssp files for the current version of the Telerik controls for Winforms?
Hello!
I was trying to upgrade several programs to have the font connected to the program size ("dynamic" font). I wasn't able to do it in a simple way because i kept finding problems and i assumed it was some minor telerik object bugs. But then i found out that some of the bugs weren't simple to fix because the fix would impact the program performance. So i created a program from scratch to see if the problem was in my program (i could be doing something wrong since it hd a lot of code) but i came to the conclusion that this problem is actually because of the theme and not mine or the programs fault.
When i use a radgridview and change the font to a higher size (ex: 27) some of the text in the grid won't change if i'm using the theme 'TelerikMetroBlue'. But if i use the default theme 'Office2010Blue' the object works great.
Please check the attached images.
Note: I'm only using a radgridview in this example but the problem was also detected in other objects, like radlistview and radganttview.
JP
I'm trying to use the Windows11Compact theme as default for an entire application, using the config below.
This is a WinForms project in C#, I have the Windows11 theme dll added to the project, and I'm trying to automaticaly apply the Windows11Compact theme for all controls and all forms that will be added in the project. I don't want to set the theme in runtime because I need to see the theme during the design of the application.
With the config shown above the theme is not applied. It only uses the default Telerik theme.
However, if I change to the Windows11 theme the form updates automaticaly as well as any control I add. It also work's with the Fluent Theme for exemple.
The version of telerik I'm using is Telerik for WinForms 2024.1.312.40.
Thank you in advance for any answer.
Hello,
I am looking for a freelance GUI Designer familiar with Telerik UI for Winforms for an internal Project
best regards
Stefan
Hello!
I have two questions:
1) I'm trying (without success) to change the background color of my Application Menu (button?) Button on the left side of the Ribbon that opens (in my case) to the Backstage from inside Visual Style Builder. Can you point me to the correct element please?
2) This one is a little more difficult to explain - I'll be attaching before/after images in case I'm not as clear as I'd like to be.
using RadRibbonForm there are Tabs. Under the Tabs are Groups. These groups contain buttons, lists, etc that live on the Ribbon.
I'm trying to set the background color for these groups and while I was successful in doing that, there's an unpleasant space/gap/padding? that surrounds the "group"
How do i remove that gap? Also, how do i make this fill rectangular? There should be no 'gradient' going from the background color - to white.
I can make the mods in-code if needed, the best choice would be to learn where to update these properties in Visual Style Builder.
Kindest regards,
Curtis.
Hi,
I have a grid within a panel and I want to adjust the panel height based on the total height of the grid.
Using this code:
Me.Panel1.Height = Me.grid.TableElement.RowHeight * Me.grid.RowCount + grid.TableElement.TableHeaderHeight + 5
It seems to work ok if I use "Fluent" theme but not for "VisualStudio2012Light". I have attached a sample form.
Any explanation for this and how do I fix it?
HI,
Is it possible to apply Telerik themes to any of the native (i.e. non-Telerik) Microsoft controls, such as System.Windows.Forms.Button? This is possible with WPF controls (https://docs.telerik.com/devtools/wpf/styling-and-appearance/stylemanager/common-styling-themes-mscontrols), but I have not found any documentation for doing this with WinForms controls.
Is this possible?
Thanks!