让控件的背景色透明

时间:2022-01-11 13:22:54

By default, controls do not support transparent backcolors. However, you can allow your control to have a background color that is opaque, transparent, or partially transparent by using the Control.SetStyle Method in the constructor. The SetStyle method of the Control class allows you to set particular style preferences for your controls, and can be used to enable or disable support for transparent backcolors.

To give your control a transparent backcolor

  1. In the Code Editor for your control, locate the constructor.
  2. Call the SetStyle method of your form in the constructor.
    ' Visual Basic
        SetStyle(ControlStyles.SupportsTransparentBackColor, True)
        // C#
        SetStyle(ControlStyles.SupportsTransparentBackColor, true);

    This will enable your control to support a transparent backcolor.

  3. Beneath the line of code you added in step 1, add the following line. This will set your control's BackColor to Transparent.
    ' Visual Basic
        Me.BackColor = Color.Transparent
        // C#
        this.BackColor = Color.Transparent;

    Note that you can also create colors that are partially transparent using the Color.FromArgb method. For more information on colors, see Pens, Brushes, and Colors.