我想将richtextbox的背景颜色设置为透明在c#中你可以帮我取悦它是一个winform应用程序
Meh*_*loo 11
public class TransparentLabel : RichTextBox
{
public TransparentLabel()
{
this.SetStyle(ControlStyles.Opaque, true);
this.SetStyle(ControlStyles.OptimizedDoubleBuffer, false);
this.TextChanged += TransparentLabel_TextChanged;
this.VScroll += TransparentLabel_TextChanged;
this.HScroll += TransparentLabel_TextChanged;
}
void TransparentLabel_TextChanged(object sender, System.EventArgs e)
{
this.ForceRefresh();
}
protected override CreateParams CreateParams
{
get
{
CreateParams parms = base.CreateParams;
parms.ExStyle |= 0x20; // Turn on WS_EX_TRANSPARENT
return parms;
}
}
public void ForceRefresh()
{
this.UpdateStyles();
}
}
Run Code Online (Sandbox Code Playgroud)
答案是这样的:
归档时间: |
|
查看次数: |
4739 次 |
最近记录: |