HatchStyle.LargeConfetti : HatchBrush « 2D « C# / CSharp Tutorial






using System;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;

public class Form1 : System.Windows.Forms.Form {
    [STAThread]
    static void Main() {
        Application.Run(new Form1());
    }

    protected override void OnPaint(PaintEventArgs e) {
        Graphics g = e.Graphics;

        HatchBrush hb = new HatchBrush(HatchStyle.LargeConfetti,Color.AntiqueWhite, Color.Blue);
        g.FillEllipse(hb, 30, 30, Width - 50, 30);


    }
}








27.29.HatchBrush
27.29.1.new HatchBrush(HatchStyle.Cross,Color.White,Color.Black)
27.29.2.new HatchBrush
27.29.3.HatchBrush StyleHatchBrush Style
27.29.4.Create HatchBrush: style and colorCreate HatchBrush: style and color
27.29.5.HatchStyle.Plaid
27.29.6.HatchStyle.ZigZag
27.29.7.HatchStyle.LargeConfetti
27.29.8.Hatch Brush Array (HatchStyle minimum and maximum values)