2

BackColorパネルまたは同様のコントロールの境界線を変更する方法はありますか?

ユーザーコントロールの上にマウスを置いたときに、ユーザーコントロールを「強調表示」しようとしています。

4

2 に答える 2

3

フォーム上のコントロールを境界線で強調表示する単純なクラスを次に示します。

    public class Highlighter : Control
    {
        public void SetTarget(Control c)
        {
            Rectangle r = c.Bounds;
            r.Inflate(3, 3);
            Bounds = r;
        }

        protected override void OnPaint(PaintEventArgs e)
        {
            base.OnPaint(e);

            e.Graphics.FillRectangle(Brushes.Red, e.ClipRectangle);
        }
    }

次に、フォームで、それを使用するようにすべてを設定します。

    private void Form1_Load(object sender, EventArgs e)
    {
        foreach (Control c in Controls)
        {
            c.MouseEnter += mouseEnter;
            c.MouseLeave += mouseLeave;
        }
    }

    private void mouseEnter(object sender, EventArgs e)
    {
        _highlighter.SetTarget(sender as Control);
        _highlighter.Visible = true;
    }

    private void mouseLeave(object sender, EventArgs e)
    {
        _highlighter.Visible = false;
    }

次に、コンストラクターでハイライターを作成します。

    public Form1()
    {
        InitializeComponent();
        _highlighter = new Highlighter();
        Controls.Add(_highlighter);
    }
于 2009-04-20T14:05:55.613 に答える
0

これを行うには、MouseEnter / MouseLeave イベントを使用できます。

    private void panel1_MouseEnter(object sender, EventArgs e)
    {
        panel1.BackColor = System.Drawing.Color.Red;
    }

    private void panel1_MouseLeave(object sender, EventArgs e)
    {
        panel1.BackColor = System.Drawing.Color.Empty;
    }
于 2009-04-20T12:03:17.653 に答える