SplitButton.cs

date
Oct 28, 2021
slug
10034
status
Published
tags
C#
summary
type
Post
SplitButton.cs
using System.ComponentModel;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Windows.Forms;

public class SplitButton : Button
{
    [DefaultValue(null), Browsable(true), DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
    public ContextMenuStrip Menu { get; set; }

    [DefaultValue(20), Browsable(true), DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
    public int SplitWidth { get; set; }

    public SplitButton()
    {
        SplitWidth = 20;
    }

    protected override void OnMouseDown(MouseEventArgs mevent)
    {
        var splitRect = new Rectangle(Width - SplitWidth, 0, SplitWidth, Height);

        // Figure out if the button click was on the button itself or the menu split
        if (Menu != null && mevent.Button == MouseButtons.Left && splitRect.Contains(mevent.Location))
        {
            Menu.Show(this, 0, Height);    // Shows menu under button
            //Menu.Show(this, mevent.Location); // Shows menu at click location
        }
        else
        {
            base.OnMouseDown(mevent);
        }
    }

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

        if (Menu != null && SplitWidth > 0)
        {
            // Draw the arrow glyph on the right side of the button
            int arrowX = ClientRectangle.Width - 14;
            int arrowY = ClientRectangle.Height / 2 - 1;

            var arrowBrush = Enabled ? SystemBrushes.ControlText : SystemBrushes.ButtonShadow;
            var arrows = new[] { new Point(arrowX, arrowY), new Point(arrowX + 7, arrowY), new Point(arrowX + 3, arrowY + 4) };
            pevent.Graphics.FillPolygon(arrowBrush, arrows);

            // Draw a dashed separator on the left of the arrow
            int lineX = ClientRectangle.Width - SplitWidth;
            int lineYFrom = arrowY - 4;
            int lineYTo = arrowY + 8;
            using (var separatorPen = new Pen(Brushes.DarkGray) { DashStyle = DashStyle.Dot })
            {
                pevent.Graphics.DrawLine(separatorPen, lineX, lineYFrom, lineX, lineYTo);
            }
        }
    }
}
使用方法:
先添加一个contextMenuStrip1,然后
            SplitButton menuButton = new SplitButton
            {
                Menu = contextMenuStrip1,
                Location = new Point(855, 248),
                Text = "MenuButton",
                TextAlign = ContentAlignment.MiddleLeft,
                Size = new Size(150, 30)
            };
            menuButton.Click += new EventHandler(menuButton_Click);
            Controls.Add(menuButton);
或者新建class library,把SplitButton.cs编译成dll文件,导入到控件表。直接使用,需要选择Menu属性为一个contextMenuStrip1

© Wen Bo 2021 - 2022