Irregularly Shaped Forms Demo : Irregularly Shaped Forms « GUI Windows Form « 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 » GUI Windows Form » Irregularly Shaped FormsScreenshots 
Irregularly Shaped Forms Demo
Irregularly Shaped Forms Demo

/*
User Interfaces in C#: Windows Forms and Custom Controls
by Matthew MacDonald

Publisher: Apress
ISBN: 1590590457
*/
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Drawing.Drawing2D;

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

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

            //
            // 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()
        {
            this.Button1 = new System.Windows.Forms.Button();
            this.SuspendLayout();
            // 
            // Button1
            // 
            this.Button1.Location = new System.Drawing.Point(2024);
            this.Button1.Name = "Button1";
            this.Button1.Size = new System.Drawing.Size(13636);
            this.Button1.TabIndex = 1;
            this.Button1.Text = "Button1";
            // 
            // IrregularlyShapedForms2
            // 
            this.AutoScaleBaseSize = new System.Drawing.Size(513);
            this.ClientSize = new System.Drawing.Size(292266);
            this.Controls.AddRange(new System.Windows.Forms.Control[] {
                                                                          this.Button1});
            this.Name = "IrregularlyShapedForms2";
            this.Text = "Shaped Form";
            this.Load += new System.EventHandler(this.IrregularlyShapedForms2_Load);
            this.ResumeLayout(false);

        }
        #endregion

        [STAThread]
        static void Main() 
        {
            Application.Run(new IrregularlyShapedForms2());
        }

        private void IrregularlyShapedForms2_Load(object sender, System.EventArgs e)
        {
            GraphicsPath path = new GraphicsPath();
            path.AddEllipse(00this.Width / 2this.Height / 2);
            path.AddRectangle(new Rectangle(this.Width / 2this.Top / 2this.Width / 2this.Top / 2));
            path.AddEllipse(this.Width / 2this.Height / 2this.Width / 2this.Height / 2);
            this.Region = new Region(path);
        }

    }
}



           
       
Related examples in the same category
1.Transparent window: holes
2.Transparent window: set Opacity
3.Transparent form windowTransparent form window
4.Non rectangle Form windowNon rectangle Form window
5.Transparent window and screen captureTransparent window and screen capture
6.Irregularly Shaped Forms demo 1Irregularly Shaped Forms demo 1
7.Transparent FormsTransparent Forms
8.Transparent Forms: holesTransparent Forms: holes
9.Transparent formTransparent form
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.