PathGradient.CenterPoint : Gradient Brush « 2D « C# / CSharp Tutorial

C# / CSharp Tutorial
1. Language Basics
2. Data Type
3. Operator
4. Statement
5. String
6. struct
7. Class
8. Operator Overload
9. delegate
10. Attribute
11. Data Structure
12. Assembly
13. Date Time
14. Development
15. File Directory Stream
16. Preprocessing Directives
17. Regular Expression
18. Generic
19. Reflection
20. Thread
21. I18N Internationalization
22. GUI Windows Forms
23. 2D
24. Design Patterns
25. Windows
26. XML
27. ADO.Net
28. Network
29. Directory Services
30. Security
31. unsafe
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
C# / CSharp Tutorial » 2D » Gradient Brush 
23. 27. 3. PathGradient.CenterPoint
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;

using System.Drawing.Drawing2D;

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;
        Font f = new Font(new FontFamily("Times New Roman")10);
        Brush fb = new SolidBrush(Color.Black);
        GraphicsPath gp;
        PathGradientBrush pGB; 
        Rectangle rec;
        Color cR = Color.Red, cW = Color.White, cY = Color.Yellow;
        int w = 100, h = 70;

        g.DrawString("Center", f, fb, 105);
        gp = new GraphicsPath();
        rec = new Rectangle(1020, w, h);
        gp.AddRectangle(rec);
        pGB = new PathGradientBrush(gp);
        pGB.CenterPoint = new Point(10 + w / 220 + h / 2);
        pGB.CenterColor = cR;
        pGB.SurroundColors = new Color[1] { cW };
        g.FillRectangle(pGB, rec);

        g.DrawString("Center - 2 x 2 Colors", f, fb, w + 205);
        gp = new GraphicsPath();
        rec = new Rectangle(20 + w, 20, w, h);
        gp.AddRectangle(rec);
        pGB = new PathGradientBrush(gp);
        pGB.CenterPoint = new Point(w + 20 + w / 220 + h / 2);
        pGB.CenterColor = cR;
        pGB.SurroundColors = new Color[4] { cW, cY, cW, cY };
        g.FillRectangle(pGB, rec);

        g.DrawString("LefTopCenter", f, fb, 10, h + 25);
        gp = new GraphicsPath();
        rec = new Rectangle(10, h + 40, w, h);
        gp.AddRectangle(rec);
        pGB = new PathGradientBrush(gp);
        pGB.CenterPoint = new Point(10, h + 40);
        pGB.CenterColor = cR;
        pGB.SurroundColors = new Color[1] { cW };
        g.FillRectangle(pGB, rec);

        g.DrawString("Top", f, fb, w + 20, h + 25);
        gp = new GraphicsPath();
        rec = new Rectangle(w + 20, h + 40, w, h);
        gp.AddEllipse(rec);
        pGB = new PathGradientBrush(gp);
        pGB.CenterPoint = new Point(w + 20 + w / 2, h + 40);
        pGB.CenterColor = cR;
        pGB.SurroundColors = new Color[1] { cW };
        g.FillRectangle(pGB, rec);

        g.Dispose();
        fb.Dispose();
    }
}
23. 27. Gradient Brush
23. 27. 1. Linear Gradient BrushLinear Gradient Brush
23. 27. 2. Fill a rectangle Linear Gradient BrushFill a rectangle Linear Gradient Brush
23. 27. 3. PathGradient.CenterPoint
w__w__w__._j_a__v_a___2__s.___com___ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.