Line Gradient : Gradient « 2D Graphics « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Date Time
8.Design Patterns
9.Development Class
10.Event
11.File Stream
12.Generics
13.GUI Windows Form
14.Internationalization I18N
15.Language Basics
16.LINQ
17.Network
18.Office
19.Reflection
20.Regular Expressions
21.Security
22.Services Event
23.Thread
24.Web Services
25.Windows
26.Windows Presentation Foundation
27.XML
28.XML LINQ
C# Book
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » 2D Graphics » GradientScreenshots 
Line Gradient
Line Gradient

/*
Professional Windows GUI Programming Using C#
by Jay Glynn, Csaba Torok, Richard Conway, Wahid Choudhury, 
   Zach Greenvoss, Shripad Kulkarni, Neil Whitlow

Publisher: Peer Information
ISBN: 1861007663
*/
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;

using System.Drawing.Drawing2D;  // LinearGradientBrush

namespace LinGradient
{
    /// <summary>
    /// Summary description for LinGradient.
    /// </summary>
    public class LinGradient : System.Windows.Forms.Form
    {
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.Container components = null;

        public LinGradient()
        {
            //
            // Required for Windows Form Designer support
            //
            InitializeComponent();

            this.Text = "LinearGradientMode";

            //
            // TODO: Add any constructor code after InitializeComponent call
            //
        }

        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        protected override void Disposebool disposing )
        {
            ifdisposing )
            {
                if (components != null
                {
                    components.Dispose();
                }
            }
            base.Disposedisposing );
        }

        #region Windows Form Designer generated code
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            // 
            // LinGradient
            // 
            this.AutoScaleBaseSize = new System.Drawing.Size(513);
            this.ClientSize = new System.Drawing.Size(256205);
            this.Name = "LinGradient";
            this.Text = "LinGradient";

        }
        #endregion

        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
        static void Main() 
        {
            Application.Run(new LinGradient());
        }
        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);
            LinearGradientBrush lGB;  // namespace System.Drawing.Drawing2D;
            Color cR = Color.Red, cW = Color.White;
            int w = 100, h = 70;

            // Left upper rectangle:
            g.DrawString("Horizontal", f, fb, 105);
            Rectangle rec = new Rectangle(1020, w, h);
            LinearGradientMode lGM = LinearGradientMode.Horizontal;
            lGB = new LinearGradientBrush(rec, cR, cW, lGM);
            g.FillRectangle(lGB, rec);
         
            // Right upper rectangle:
            g.DrawString("Vertical", f, fb, w + 205);
            rec.Offset(w + 100);
            lGM = LinearGradientMode.Vertical;
            lGB = new LinearGradientBrush(rec, cR, cW, lGM);
            g.FillRectangle(lGB, rec);

            // Left down rectangle:
            g.DrawString("ForwardDiagonal", f, fb, 10, h + 25);
            rec.Offset(-w - 10, h + 20);
            lGM = LinearGradientMode.ForwardDiagonal;
            lGB = new LinearGradientBrush(rec, cR, cW, lGM);
            g.FillRectangle(lGB, rec);

            // Right down rectangle:
            g.DrawString("BackwardDiagonal", f, fb, w + 20, h + 25);
            rec.Offset(w + 100);
            lGM = LinearGradientMode.BackwardDiagonal;
            lGB = new LinearGradientBrush(rec, cR, cW, lGM);
            g.FillRectangle(lGB, rec);

            fb.Dispose();
            g.Dispose();
        }
    }
}


           
       
Related examples in the same category
1.Path Gradient DemoPath Gradient Demo
2.All Linear Gradient ModeAll Linear Gradient Mode
3.Simple way to create linear gradient brushSimple way to create linear gradient brush
4.Path Gradient Brush from Graphics PathPath Gradient Brush from Graphics Path
5.Use LinearGradientBrush to draw a RectangleUse LinearGradientBrush to draw a Rectangle
6.Gradient LabelGradient Label
7.Gradient ButtonGradient Button
8.Gradient BrushesGradient Brushes
9.Gradient DemoGradient  Demo
10.Gradient WrapGradient Wrap
11.Gradient Label HostGradient Label Host
12.Path GradientPath Gradient
java2s.com  |  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.