半透明自定义控件

时间:2015-01-13 17:11:04

标签: c# .net winforms

我正在寻找如何在C#WinForms程序中绘制透明控件(能够在其后面看到它)。

我需要类似下图的内容。正如您所看到的,在图像的中心有一个半透明的组件(实际上它就像一个游标),它正在为一个圆形填充一个圆形扇区。

我专注于获得半透明控件,现在,如果我在我的组件上设置透明背景(继承自标准控件类),它的背景与父背景的颜色相同。显然很复杂,在WinForms中得到透明控件,但是图像是在WinForms程序上拍摄的。

你知道吗?这可能吗?

enter image description here


编辑: 很抱歉,如果这是一个重复的问题,我将把我的代码粘贴到其他程序员下面,但我在你的链接中包含了这些建议。 (仅显示与问题相关的代码,没有属性,没有属性等)

public partial class LoadingCircle : Control
{
    public LoadingCircle()
    {
        SetStyle(ControlStyles.UserPaint, true);
        SetStyle(ControlStyles.OptimizedDoubleBuffer, true);
        SetStyle(ControlStyles.ResizeRedraw, true);
        SetStyle(ControlStyles.SupportsTransparentBackColor, true);

        //Added following StackOverflow
        SetStyle(ControlStyles.Opaque, true);
        this.BackColor = Color.Transparent;

        m_Color = DefaultColor;

        GenerateColorsPallet();
        GetSpokesAngles();
        GetControlCenterPoint();

        m_Timer = new Timer();
        m_Timer.Tick += new EventHandler(aTimer_Tick);
        ActiveTimer();

        this.Resize += new EventHandler(LoadingCircle_Resize);

    }

    void aTimer_Tick(object sender, EventArgs e)
    {
        m_ProgressValue = ++m_ProgressValue % m_NumberOfSpoke;
        Invalidate();
    }


    protected override void OnPaint(PaintEventArgs e)
    {
        if (m_NumberOfSpoke > 0)
        {
            e.Graphics.SmoothingMode = SmoothingMode.HighQuality;

            int intPosition = m_ProgressValue;
            for (int intCounter = 0; intCounter < m_NumberOfSpoke; intCounter++)
            {
                intPosition = intPosition % m_NumberOfSpoke;
                DrawLine(e.Graphics,
                         GetCoordinate(m_CenterPoint, m_InnerCircleRadius, m_Angles[intPosition]),
                         GetCoordinate(m_CenterPoint, m_OuterCircleRadius, m_Angles[intPosition]),
                         m_Colors[intCounter], m_SpokeThickness);
                intPosition++;
            }
        }

        base.OnPaint(e);


    }

    //Added following StackOverflow
    protected override CreateParams CreateParams
    {
        get
        {
            CreateParams cp = base.CreateParams;
            cp.ExStyle |= 0x20; //WS_EX_TRANSPARENT
            return cp;
        }
    }


    protected override void OnBackColorChanged(EventArgs e)
    {
        if (this.Parent != null) Parent.Invalidate(this.Bounds, true);
        base.OnBackColorChanged(e);
    }

    protected override void OnParentBackColorChanged(EventArgs e)
    {
        this.Invalidate();
        base.OnParentBackColorChanged(e);
    }
    //----- End

    private void DrawLine(Graphics _objGraphics, PointF _objPointOne, PointF _objPointTwo,
                          Color _objColor, int _intLineThickness)
    {
        using(Pen objPen = new Pen(new SolidBrush(_objColor), _intLineThickness))
        {
            objPen.StartCap = LineCap.Round;
            objPen.EndCap = LineCap.Round;
            _objGraphics.DrawLine(objPen, _objPointOne, _objPointTwo);
        }
    }


    private void ActiveTimer()
    {
        if (m_IsTimerActive)
            m_Timer.Start();
        else
        {
            m_Timer.Stop();
            m_ProgressValue = 0;
        }

        GenerateColorsPallet();
        Invalidate();
    }

}

编辑2:我添加了一个结果图像,因为你可以看到我的控件的背景(LoadingCircle)与它的父(窗体)相同但按钮保持隐藏。

enter image description here

1 个答案:

答案 0 :(得分:0)

this.SetStyle(ControlStyles.SupportsTransparentBackColor, true);