gpt4 book ai didi

c# - 使用 telerik 在 radForm 中更改标题栏文本颜色

转载 作者:太空宇宙 更新时间:2023-11-03 12:47:58 27 4
gpt4 key购买 nike

我使用的是 Telerik rad 表单,我使用以下代码自定义了标题栏的颜色

this.FormElement.TitleBar.FillPrimitive.BackColor = Color.FromArgb(52, 52, 52);    
this.FormElement.TitleBar.FillPrimitive.GradientStyle = Telerik.WinControls.GradientStyles.Solid;
this.FormElement.TitleBar.BorderPrimitive.BoxStyle = Telerik.WinControls.BorderBoxStyle.SingleBorder;
this.FormElement.TitleBar.BorderPrimitive.ForeColor = Color.FromArgb(52, 52, 52);

但现在我需要更改标题栏文本的颜色。有可能吗?

enter image description here

标题栏文本是 Rad Form 1,但它不可见,我需要将其颜色更改为白色吗?怎么做..?

最佳答案

使用 FormElement.TitleBarForeColor 属性:

this.FormElement.TitleBar.ForeColor = Color.White;

更新

如果你像这样设置 Rad 表单,它应该可以工作:

public frmMain()
{
new VisualStudio2012LightTheme();
InitializeComponent();
this.ThemeName = "VisualStudio2012Light";
}

private void frmMain_Shown(object sender, EventArgs e)
{
this.FormElement.TitleBar.ForeColor = Color.White;
}

关于c# - 使用 telerik 在 radForm 中更改标题栏文本颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36589347/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com