原文地址:https://stackoverflow.com/questions/4387680/transparent-background-on-winforms

this.BackColor = Color.LimeGreen;
this.TransparencyKey = Color.LimeGreen;
protected override void OnPaintBackground(PaintEventArgs e)
{
    //empty implementation
}

相关文章:

  • 2021-12-04
  • 2021-08-28
  • 2021-10-16
  • 2022-12-23
  • 2021-12-27
  • 2021-11-09
  • 2021-06-13
  • 2021-10-06
猜你喜欢
  • 2021-12-22
  • 2021-06-12
  • 2021-11-06
  • 2022-01-15
  • 2021-12-27
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案