0

C#でハート型のピクチャボックスを作ることは可能ですか? 長方形と楕円を作成するコードを見たことがありますが、ハート型の領域を作成する方法はわかりません。

何か案が?

4

2 に答える 2

3

これはうまくいくようです:

public class HeartPictureBox : PictureBox {
    protected override void OnPaint(PaintEventArgs pe) {
        using (System.Drawing.Drawing2D.GraphicsPath path = new System.Drawing.Drawing2D.GraphicsPath()) {
            path.AddBezier(this.Width >> 1,
                            this.Height >> 2,
                            this.Width * 1.25f, 0f,
                            this.Width,
                            this.Height * 0.75f,
                            this.Width >> 1,
                            this.Height);
            path.AddBezier(this.Width >> 1,
                            this.Height >> 2,
                            -this.Width * .25f, 0f,
                            0f,
                            this.Height * 0.75f,
                            this.Width >> 1,
                            this.Height);

            this.Region = new Region(path);
        }
    }
}

ここからのベジェのもの:http://www.codeproject.com/Tips/177794/Heart-sized-Form-in-C-2-0

于 2013-01-09T23:06:24.030 に答える