Csharp/C Sharp by API/System.Windows.Forms/DomainUpDown

Материал из .Net Framework эксперт
Перейти к: навигация, поиск

DomainUpDown.Items.Add

 

using System;
using System.Drawing;
using System.Collections;
using System.ruponentModel;
using System.Windows.Forms;
using System.Data;
    public class UpDown : System.Windows.Forms.Form
    {
      private System.Windows.Forms.Button button2;
      private System.Windows.Forms.TextBox textBox1;
      private System.Windows.Forms.Button button1;
      private System.Windows.Forms.DomainUpDown UPDOWN_DOMAIN;
      private System.Windows.Forms.Label label1;
        public UpDown()
        {
         this.button2 = new System.Windows.Forms.Button();
         this.textBox1 = new System.Windows.Forms.TextBox();
         this.button1 = new System.Windows.Forms.Button();
         this.UPDOWN_DOMAIN = new System.Windows.Forms.DomainUpDown();
         this.label1 = new System.Windows.Forms.Label();
         this.SuspendLayout();
         this.button2.Location = new System.Drawing.Point(136, 80);
         this.button2.Text = "Add Item";
         this.textBox1.Location = new System.Drawing.Point(24, 80);
         this.textBox1.Text = "";
         this.button1.Location = new System.Drawing.Point(264, 40);
         this.button1.Size = new System.Drawing.Size(64, 23);
         this.button1.Text = "Remove";
         this.UPDOWN_DOMAIN.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(192)), ((System.Byte)(192)));
         this.UPDOWN_DOMAIN.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
         this.UPDOWN_DOMAIN.ForeColor = System.Drawing.SystemColors.HotTrack;
         this.UPDOWN_DOMAIN.Location = new System.Drawing.Point(24, 40);
         this.UPDOWN_DOMAIN.Name = "UPDOWN_DOMAIN";
         this.UPDOWN_DOMAIN.Size = new System.Drawing.Size(232, 26);
         this.UPDOWN_DOMAIN.Sorted = true;
         this.UPDOWN_DOMAIN.TabIndex = 5;
         this.UPDOWN_DOMAIN.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
         this.UPDOWN_DOMAIN.UpDownAlign = System.Windows.Forms.LeftRightAlignment.Left;
         this.UPDOWN_DOMAIN.Wrap = true;
         this.label1.Location = new System.Drawing.Point(24, 16);
         this.label1.Size = new System.Drawing.Size(136, 23);
         this.label1.TabIndex = 9;
         this.label1.Text = "UpDownDomain Control";
         this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
         this.ClientSize = new System.Drawing.Size(344, 117);
         this.Controls.AddRange(new System.Windows.Forms.Control[] {
                                                                      this.label1,
                                                                      this.UPDOWN_DOMAIN,
                                                                      this.button1,
                                                                      this.button2,
                                                                      this.textBox1});
         this.Name = "UpDown";
         this.Text = "UpDownDomain Control";
         this.Load += new System.EventHandler(this.UpDown_Load);
         this.ResumeLayout(false);
      }
        static void Main() 
        {
            Application.Run(new UpDown());
        }
        private void UpDown_Load(object sender, System.EventArgs e)
        {
            UPDOWN_DOMAIN.Items.Add("Visual C#");
            UPDOWN_DOMAIN.Items.Add("Visual C++");
            UPDOWN_DOMAIN.Items.Add("Visual VB");
            UPDOWN_DOMAIN.Items.Add("Managed C++");
            UPDOWN_DOMAIN.Items.Add("Crystal Reports");
            UPDOWN_DOMAIN.Items.Add("MFC");
            UPDOWN_DOMAIN.Items.Add("ATL");
            UPDOWN_DOMAIN.Items.Add("COM");
            UPDOWN_DOMAIN.Items.Add("DCOM");
            UPDOWN_DOMAIN.Items.Add("COM+");
            UPDOWN_DOMAIN.Items.Add("SETUP");
            UPDOWN_DOMAIN.Items.Add("COMMAND LINE");
            UPDOWN_DOMAIN.Items.Add("WINDOWS SERVICE");
            UPDOWN_DOMAIN.Items.Add("WINDOWS LIBRARY");
            UPDOWN_DOMAIN.Items.Add("ASP .NET WEB");
            UPDOWN_DOMAIN.Items.Add("DATABASE APPLICATION");
        }
        private void button1_Click(object sender, System.EventArgs e)
        {
            int nItemSel = UPDOWN_DOMAIN.SelectedIndex;
            if ( nItemSel >= 0 ) 
            {
                UPDOWN_DOMAIN.Items.RemoveAt(nItemSel);
                UPDOWN_DOMAIN.Update();
                UPDOWN_DOMAIN.Text = "" ; 
            }
        }
        private void button2_Click(object sender, System.EventArgs e)
        {
            if ( textBox1.Text == "" ) 
            {
                MessageBox.Show("Enter a string to add");
                return ;
            }
            UPDOWN_DOMAIN.Items.Add(textBox1.Text);
            textBox1.Text = "" ; 
        }
    }


DomainUpDown.Items.AddRange

 
  using System;
  using System.Drawing;
  using System.Collections;
  using System.ruponentModel;
  using System.Windows.Forms;
  using System.Data;
  public class UpDownForm : System.Windows.Forms.Form
  {
    private System.Windows.Forms.Label lblCurrSel;
    private System.Windows.Forms.Button btnGetSelections;
    private System.Windows.Forms.Label label1;
    private System.Windows.Forms.DomainUpDown domainUpDown;
    public UpDownForm()
    {
      this.label1 = new System.Windows.Forms.Label ();
      this.domainUpDown = new System.Windows.Forms.DomainUpDown ();
      this.btnGetSelections = new System.Windows.Forms.Button ();
      this.lblCurrSel = new System.Windows.Forms.Label ();
      label1.Location = new System.Drawing.Point (8, 24);
      label1.Text = "Domain UpDown Control";
      label1.Size = new System.Drawing.Size (224, 32);
      label1.Font = new System.Drawing.Font ("Verdana", 12);
      domainUpDown.Location = new System.Drawing.Point (264, 24);
      domainUpDown.Text = "domainUpDown1";
      domainUpDown.Size = new System.Drawing.Size (168, 20);
      domainUpDown.TabIndex = 0;
      domainUpDown.Sorted = true;
      domainUpDown.Wrap = true;
      domainUpDown.SelectedItemChanged += new System.EventHandler (this.domainUpDown_SelectedItemChanged);
      domainUpDown.Items.AddRange(new object[4] {"B", "A", "C", "(D)"});
      btnGetSelections.Location = new System.Drawing.Point (16, 136);
      btnGetSelections.Size = new System.Drawing.Size (136, 24);
      btnGetSelections.TabIndex = 4;
      btnGetSelections.Text = "Get Current Selections";
      btnGetSelections.Click += new System.EventHandler (this.btnGetSelections_Click);
      lblCurrSel.Location = new System.Drawing.Point (176, 120);
      lblCurrSel.Size = new System.Drawing.Size (256, 48);
      this.Text = "Spin Controls";
      this.AutoScaleBaseSize = new System.Drawing.Size (5, 13);
      this.ClientSize = new System.Drawing.Size (448, 181);
      this.Controls.Add (this.lblCurrSel);
      this.Controls.Add (this.btnGetSelections);
      this.Controls.Add (this.label1);
      this.Controls.Add (this.domainUpDown);
    }
    static void Main() 
    {
      Application.Run(new UpDownForm());
    }
    protected void domainUpDown_SelectedItemChanged (object sender, System.EventArgs e)
    {
      this.Text = "You changed the string value...";
    }
    protected void btnGetSelections_Click (object sender, System.EventArgs e)
    {
      // Get info from updowns...
      lblCurrSel.Text = "String: " 
        + domainUpDown.Text ;
    }
  }


DomainUpDown.Items.RemoveAt

 

using System;
using System.Drawing;
using System.Collections;
using System.ruponentModel;
using System.Windows.Forms;
using System.Data;
    public class UpDown : System.Windows.Forms.Form
    {
      private System.Windows.Forms.Button button2;
      private System.Windows.Forms.TextBox textBox1;
      private System.Windows.Forms.Button button1;
      private System.Windows.Forms.DomainUpDown UPDOWN_DOMAIN;
      private System.Windows.Forms.Label label1;
        public UpDown()
        {
         this.button2 = new System.Windows.Forms.Button();
         this.textBox1 = new System.Windows.Forms.TextBox();
         this.button1 = new System.Windows.Forms.Button();
         this.UPDOWN_DOMAIN = new System.Windows.Forms.DomainUpDown();
         this.label1 = new System.Windows.Forms.Label();
         this.SuspendLayout();
         this.button2.Location = new System.Drawing.Point(136, 80);
         this.button2.Text = "Add Item";
         this.textBox1.Location = new System.Drawing.Point(24, 80);
         this.textBox1.Text = "";
         this.button1.Location = new System.Drawing.Point(264, 40);
         this.button1.Size = new System.Drawing.Size(64, 23);
         this.button1.Text = "Remove";
         this.UPDOWN_DOMAIN.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(192)), ((System.Byte)(192)));
         this.UPDOWN_DOMAIN.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
         this.UPDOWN_DOMAIN.ForeColor = System.Drawing.SystemColors.HotTrack;
         this.UPDOWN_DOMAIN.Location = new System.Drawing.Point(24, 40);
         this.UPDOWN_DOMAIN.Name = "UPDOWN_DOMAIN";
         this.UPDOWN_DOMAIN.Size = new System.Drawing.Size(232, 26);
         this.UPDOWN_DOMAIN.Sorted = true;
         this.UPDOWN_DOMAIN.TabIndex = 5;
         this.UPDOWN_DOMAIN.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
         this.UPDOWN_DOMAIN.UpDownAlign = System.Windows.Forms.LeftRightAlignment.Left;
         this.UPDOWN_DOMAIN.Wrap = true;
         this.label1.Location = new System.Drawing.Point(24, 16);
         this.label1.Size = new System.Drawing.Size(136, 23);
         this.label1.TabIndex = 9;
         this.label1.Text = "UpDownDomain Control";
         this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
         this.ClientSize = new System.Drawing.Size(344, 117);
         this.Controls.AddRange(new System.Windows.Forms.Control[] {
                                                                      this.label1,
                                                                      this.UPDOWN_DOMAIN,
                                                                      this.button1,
                                                                      this.button2,
                                                                      this.textBox1});
         this.Name = "UpDown";
         this.Text = "UpDownDomain Control";
         this.Load += new System.EventHandler(this.UpDown_Load);
         this.ResumeLayout(false);
      }
        static void Main() 
        {
            Application.Run(new UpDown());
        }
        private void UpDown_Load(object sender, System.EventArgs e)
        {
            UPDOWN_DOMAIN.Items.Add("Visual C#");
            UPDOWN_DOMAIN.Items.Add("Visual C++");
            UPDOWN_DOMAIN.Items.Add("Visual VB");
            UPDOWN_DOMAIN.Items.Add("Managed C++");
            UPDOWN_DOMAIN.Items.Add("Crystal Reports");
            UPDOWN_DOMAIN.Items.Add("MFC");
            UPDOWN_DOMAIN.Items.Add("ATL");
            UPDOWN_DOMAIN.Items.Add("COM");
            UPDOWN_DOMAIN.Items.Add("DCOM");
            UPDOWN_DOMAIN.Items.Add("COM+");
            UPDOWN_DOMAIN.Items.Add("SETUP");
            UPDOWN_DOMAIN.Items.Add("COMMAND LINE");
            UPDOWN_DOMAIN.Items.Add("WINDOWS SERVICE");
            UPDOWN_DOMAIN.Items.Add("WINDOWS LIBRARY");
            UPDOWN_DOMAIN.Items.Add("ASP .NET WEB");
            UPDOWN_DOMAIN.Items.Add("DATABASE APPLICATION");
        }
        private void button1_Click(object sender, System.EventArgs e)
        {
            int nItemSel = UPDOWN_DOMAIN.SelectedIndex;
            if ( nItemSel >= 0 ) 
            {
                UPDOWN_DOMAIN.Items.RemoveAt(nItemSel);
                UPDOWN_DOMAIN.Update();
                UPDOWN_DOMAIN.Text = "" ; 
            }
        }
        private void button2_Click(object sender, System.EventArgs e)
        {
            if ( textBox1.Text == "" ) 
            {
                MessageBox.Show("Enter a string to add");
                return ;
            }
            UPDOWN_DOMAIN.Items.Add(textBox1.Text);
            textBox1.Text = "" ; 
        }
    }


DomainUpDown.SelectedIndex

 

using System;
using System.Drawing;
using System.Collections;
using System.ruponentModel;
using System.Windows.Forms;
using System.Data;
    public class UpDown : System.Windows.Forms.Form
    {
      private System.Windows.Forms.Button button2;
      private System.Windows.Forms.TextBox textBox1;
      private System.Windows.Forms.Button button1;
      private System.Windows.Forms.DomainUpDown UPDOWN_DOMAIN;
      private System.Windows.Forms.Label label1;
        public UpDown()
        {
         this.button2 = new System.Windows.Forms.Button();
         this.textBox1 = new System.Windows.Forms.TextBox();
         this.button1 = new System.Windows.Forms.Button();
         this.UPDOWN_DOMAIN = new System.Windows.Forms.DomainUpDown();
         this.label1 = new System.Windows.Forms.Label();
         this.SuspendLayout();
         this.button2.Location = new System.Drawing.Point(136, 80);
         this.button2.Text = "Add Item";
         this.textBox1.Location = new System.Drawing.Point(24, 80);
         this.textBox1.Text = "";
         this.button1.Location = new System.Drawing.Point(264, 40);
         this.button1.Size = new System.Drawing.Size(64, 23);
         this.button1.Text = "Remove";
         this.UPDOWN_DOMAIN.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(192)), ((System.Byte)(192)));
         this.UPDOWN_DOMAIN.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
         this.UPDOWN_DOMAIN.ForeColor = System.Drawing.SystemColors.HotTrack;
         this.UPDOWN_DOMAIN.Location = new System.Drawing.Point(24, 40);
         this.UPDOWN_DOMAIN.Name = "UPDOWN_DOMAIN";
         this.UPDOWN_DOMAIN.Size = new System.Drawing.Size(232, 26);
         this.UPDOWN_DOMAIN.Sorted = true;
         this.UPDOWN_DOMAIN.TabIndex = 5;
         this.UPDOWN_DOMAIN.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
         this.UPDOWN_DOMAIN.UpDownAlign = System.Windows.Forms.LeftRightAlignment.Left;
         this.UPDOWN_DOMAIN.Wrap = true;
         this.label1.Location = new System.Drawing.Point(24, 16);
         this.label1.Size = new System.Drawing.Size(136, 23);
         this.label1.TabIndex = 9;
         this.label1.Text = "UpDownDomain Control";
         this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
         this.ClientSize = new System.Drawing.Size(344, 117);
         this.Controls.AddRange(new System.Windows.Forms.Control[] {
                                                                      this.label1,
                                                                      this.UPDOWN_DOMAIN,
                                                                      this.button1,
                                                                      this.button2,
                                                                      this.textBox1});
         this.Name = "UpDown";
         this.Text = "UpDownDomain Control";
         this.Load += new System.EventHandler(this.UpDown_Load);
         this.ResumeLayout(false);
      }
        static void Main() 
        {
            Application.Run(new UpDown());
        }
        private void UpDown_Load(object sender, System.EventArgs e)
        {
            UPDOWN_DOMAIN.Items.Add("Visual C#");
            UPDOWN_DOMAIN.Items.Add("Visual C++");
            UPDOWN_DOMAIN.Items.Add("Visual VB");
            UPDOWN_DOMAIN.Items.Add("Managed C++");
            UPDOWN_DOMAIN.Items.Add("Crystal Reports");
            UPDOWN_DOMAIN.Items.Add("MFC");
            UPDOWN_DOMAIN.Items.Add("ATL");
            UPDOWN_DOMAIN.Items.Add("COM");
            UPDOWN_DOMAIN.Items.Add("DCOM");
            UPDOWN_DOMAIN.Items.Add("COM+");
            UPDOWN_DOMAIN.Items.Add("SETUP");
            UPDOWN_DOMAIN.Items.Add("COMMAND LINE");
            UPDOWN_DOMAIN.Items.Add("WINDOWS SERVICE");
            UPDOWN_DOMAIN.Items.Add("WINDOWS LIBRARY");
            UPDOWN_DOMAIN.Items.Add("ASP .NET WEB");
            UPDOWN_DOMAIN.Items.Add("DATABASE APPLICATION");
        }
        private void button1_Click(object sender, System.EventArgs e)
        {
            int nItemSel = UPDOWN_DOMAIN.SelectedIndex;
            if ( nItemSel >= 0 ) 
            {
                UPDOWN_DOMAIN.Items.RemoveAt(nItemSel);
                UPDOWN_DOMAIN.Update();
                UPDOWN_DOMAIN.Text = "" ; 
            }
        }
        private void button2_Click(object sender, System.EventArgs e)
        {
            if ( textBox1.Text == "" ) 
            {
                MessageBox.Show("Enter a string to add");
                return ;
            }
            UPDOWN_DOMAIN.Items.Add(textBox1.Text);
            textBox1.Text = "" ; 
        }
    }


DomainUpDown.SelectedItemChanged

 

  using System;
  using System.Drawing;
  using System.Collections;
  using System.ruponentModel;
  using System.Windows.Forms;
  using System.Data;
  public class UpDownForm : System.Windows.Forms.Form
  {
    private System.Windows.Forms.Label lblCurrSel;
    private System.Windows.Forms.Button btnGetSelections;
    private System.Windows.Forms.Label label1;
    private System.Windows.Forms.DomainUpDown domainUpDown;
    public UpDownForm()
    {
      this.label1 = new System.Windows.Forms.Label ();
      this.domainUpDown = new System.Windows.Forms.DomainUpDown ();
      this.btnGetSelections = new System.Windows.Forms.Button ();
      this.lblCurrSel = new System.Windows.Forms.Label ();
      label1.Location = new System.Drawing.Point (8, 24);
      label1.Text = "Domain UpDown Control";
      label1.Size = new System.Drawing.Size (224, 32);
      label1.Font = new System.Drawing.Font ("Verdana", 12);
      domainUpDown.Location = new System.Drawing.Point (264, 24);
      domainUpDown.Text = "domainUpDown1";
      domainUpDown.Size = new System.Drawing.Size (168, 20);
      domainUpDown.TabIndex = 0;
      domainUpDown.Sorted = true;
      domainUpDown.Wrap = true;
      domainUpDown.SelectedItemChanged += new System.EventHandler (this.domainUpDown_SelectedItemChanged);
      domainUpDown.Items.AddRange(new object[4] {"B", "A", "C", "(D)"});
      btnGetSelections.Location = new System.Drawing.Point (16, 136);
      btnGetSelections.Size = new System.Drawing.Size (136, 24);
      btnGetSelections.TabIndex = 4;
      btnGetSelections.Text = "Get Current Selections";
      btnGetSelections.Click += new System.EventHandler (this.btnGetSelections_Click);
      lblCurrSel.Location = new System.Drawing.Point (176, 120);
      lblCurrSel.Size = new System.Drawing.Size (256, 48);
      this.Text = "Spin Controls";
      this.AutoScaleBaseSize = new System.Drawing.Size (5, 13);
      this.ClientSize = new System.Drawing.Size (448, 181);
      this.Controls.Add (this.lblCurrSel);
      this.Controls.Add (this.btnGetSelections);
      this.Controls.Add (this.label1);
      this.Controls.Add (this.domainUpDown);
    }
    static void Main() 
    {
      Application.Run(new UpDownForm());
    }
    protected void domainUpDown_SelectedItemChanged (object sender, System.EventArgs e)
    {
      this.Text = "You changed the string value...";
    }
    protected void btnGetSelections_Click (object sender, System.EventArgs e)
    {
      // Get info from updowns...
      lblCurrSel.Text = "String: " 
        + domainUpDown.Text ;
    }
  }


DomainUpDown.Sorted

 

using System;
using System.Drawing;
using System.Collections;
using System.ruponentModel;
using System.Windows.Forms;
using System.Data;
    public class UpDown : System.Windows.Forms.Form
    {
      private System.Windows.Forms.Button button2;
      private System.Windows.Forms.TextBox textBox1;
      private System.Windows.Forms.Button button1;
      private System.Windows.Forms.DomainUpDown UPDOWN_DOMAIN;
      private System.Windows.Forms.Label label1;
        public UpDown()
        {
         this.button2 = new System.Windows.Forms.Button();
         this.textBox1 = new System.Windows.Forms.TextBox();
         this.button1 = new System.Windows.Forms.Button();
         this.UPDOWN_DOMAIN = new System.Windows.Forms.DomainUpDown();
         this.label1 = new System.Windows.Forms.Label();
         this.SuspendLayout();
         this.button2.Location = new System.Drawing.Point(136, 80);
         this.button2.Text = "Add Item";
         this.textBox1.Location = new System.Drawing.Point(24, 80);
         this.textBox1.Text = "";
         this.button1.Location = new System.Drawing.Point(264, 40);
         this.button1.Size = new System.Drawing.Size(64, 23);
         this.button1.Text = "Remove";
         this.UPDOWN_DOMAIN.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(192)), ((System.Byte)(192)));
         this.UPDOWN_DOMAIN.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
         this.UPDOWN_DOMAIN.ForeColor = System.Drawing.SystemColors.HotTrack;
         this.UPDOWN_DOMAIN.Location = new System.Drawing.Point(24, 40);
         this.UPDOWN_DOMAIN.Name = "UPDOWN_DOMAIN";
         this.UPDOWN_DOMAIN.Size = new System.Drawing.Size(232, 26);
         this.UPDOWN_DOMAIN.Sorted = true;
         this.UPDOWN_DOMAIN.TabIndex = 5;
         this.UPDOWN_DOMAIN.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
         this.UPDOWN_DOMAIN.UpDownAlign = System.Windows.Forms.LeftRightAlignment.Left;
         this.UPDOWN_DOMAIN.Wrap = true;
         this.label1.Location = new System.Drawing.Point(24, 16);
         this.label1.Size = new System.Drawing.Size(136, 23);
         this.label1.TabIndex = 9;
         this.label1.Text = "UpDownDomain Control";
         this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
         this.ClientSize = new System.Drawing.Size(344, 117);
         this.Controls.AddRange(new System.Windows.Forms.Control[] {
                                                                      this.label1,
                                                                      this.UPDOWN_DOMAIN,
                                                                      this.button1,
                                                                      this.button2,
                                                                      this.textBox1});
         this.Name = "UpDown";
         this.Text = "UpDownDomain Control";
         this.Load += new System.EventHandler(this.UpDown_Load);
         this.ResumeLayout(false);
      }
        static void Main() 
        {
            Application.Run(new UpDown());
        }
        private void UpDown_Load(object sender, System.EventArgs e)
        {
            UPDOWN_DOMAIN.Items.Add("Visual C#");
            UPDOWN_DOMAIN.Items.Add("Visual C++");
            UPDOWN_DOMAIN.Items.Add("Visual VB");
            UPDOWN_DOMAIN.Items.Add("Managed C++");
            UPDOWN_DOMAIN.Items.Add("Crystal Reports");
            UPDOWN_DOMAIN.Items.Add("MFC");
            UPDOWN_DOMAIN.Items.Add("ATL");
            UPDOWN_DOMAIN.Items.Add("COM");
            UPDOWN_DOMAIN.Items.Add("DCOM");
            UPDOWN_DOMAIN.Items.Add("COM+");
            UPDOWN_DOMAIN.Items.Add("SETUP");
            UPDOWN_DOMAIN.Items.Add("COMMAND LINE");
            UPDOWN_DOMAIN.Items.Add("WINDOWS SERVICE");
            UPDOWN_DOMAIN.Items.Add("WINDOWS LIBRARY");
            UPDOWN_DOMAIN.Items.Add("ASP .NET WEB");
            UPDOWN_DOMAIN.Items.Add("DATABASE APPLICATION");
        }
        private void button1_Click(object sender, System.EventArgs e)
        {
            int nItemSel = UPDOWN_DOMAIN.SelectedIndex;
            if ( nItemSel >= 0 ) 
            {
                UPDOWN_DOMAIN.Items.RemoveAt(nItemSel);
                UPDOWN_DOMAIN.Update();
                UPDOWN_DOMAIN.Text = "" ; 
            }
        }
        private void button2_Click(object sender, System.EventArgs e)
        {
            if ( textBox1.Text == "" ) 
            {
                MessageBox.Show("Enter a string to add");
                return ;
            }
            UPDOWN_DOMAIN.Items.Add(textBox1.Text);
            textBox1.Text = "" ; 
        }
    }


DomainUpDown.Text

 
  using System;
  using System.Drawing;
  using System.Collections;
  using System.ruponentModel;
  using System.Windows.Forms;
  using System.Data;
  public class UpDownForm : System.Windows.Forms.Form
  {
    private System.Windows.Forms.Label lblCurrSel;
    private System.Windows.Forms.Button btnGetSelections;
    private System.Windows.Forms.Label label1;
    private System.Windows.Forms.DomainUpDown domainUpDown;
    public UpDownForm()
    {
      this.label1 = new System.Windows.Forms.Label ();
      this.domainUpDown = new System.Windows.Forms.DomainUpDown ();
      this.btnGetSelections = new System.Windows.Forms.Button ();
      this.lblCurrSel = new System.Windows.Forms.Label ();
      label1.Location = new System.Drawing.Point (8, 24);
      label1.Text = "Domain UpDown Control";
      label1.Size = new System.Drawing.Size (224, 32);
      label1.Font = new System.Drawing.Font ("Verdana", 12);
      domainUpDown.Location = new System.Drawing.Point (264, 24);
      domainUpDown.Text = "domainUpDown1";
      domainUpDown.Size = new System.Drawing.Size (168, 20);
      domainUpDown.TabIndex = 0;
      domainUpDown.Sorted = true;
      domainUpDown.Wrap = true;
      domainUpDown.SelectedItemChanged += new System.EventHandler (this.domainUpDown_SelectedItemChanged);
      domainUpDown.Items.AddRange(new object[4] {"B", "A", "C", "(D)"});
      btnGetSelections.Location = new System.Drawing.Point (16, 136);
      btnGetSelections.Size = new System.Drawing.Size (136, 24);
      btnGetSelections.TabIndex = 4;
      btnGetSelections.Text = "Get Current Selections";
      btnGetSelections.Click += new System.EventHandler (this.btnGetSelections_Click);
      lblCurrSel.Location = new System.Drawing.Point (176, 120);
      lblCurrSel.Size = new System.Drawing.Size (256, 48);
      this.Text = "Spin Controls";
      this.AutoScaleBaseSize = new System.Drawing.Size (5, 13);
      this.ClientSize = new System.Drawing.Size (448, 181);
      this.Controls.Add (this.lblCurrSel);
      this.Controls.Add (this.btnGetSelections);
      this.Controls.Add (this.label1);
      this.Controls.Add (this.domainUpDown);
    }
    static void Main() 
    {
      Application.Run(new UpDownForm());
    }
    protected void domainUpDown_SelectedItemChanged (object sender, System.EventArgs e)
    {
      this.Text = "You changed the string value...";
    }
    protected void btnGetSelections_Click (object sender, System.EventArgs e)
    {
      // Get info from updowns...
      lblCurrSel.Text = "String: " 
        + domainUpDown.Text ;
    }
  }


DomainUpDown.TextAlign

 

using System;
using System.Drawing;
using System.Collections;
using System.ruponentModel;
using System.Windows.Forms;
using System.Data;
    public class UpDown : System.Windows.Forms.Form
    {
      private System.Windows.Forms.Button button2;
      private System.Windows.Forms.TextBox textBox1;
      private System.Windows.Forms.Button button1;
      private System.Windows.Forms.DomainUpDown UPDOWN_DOMAIN;
      private System.Windows.Forms.Label label1;
        public UpDown()
        {
         this.button2 = new System.Windows.Forms.Button();
         this.textBox1 = new System.Windows.Forms.TextBox();
         this.button1 = new System.Windows.Forms.Button();
         this.UPDOWN_DOMAIN = new System.Windows.Forms.DomainUpDown();
         this.label1 = new System.Windows.Forms.Label();
         this.SuspendLayout();
         this.button2.Location = new System.Drawing.Point(136, 80);
         this.button2.Text = "Add Item";
         this.textBox1.Location = new System.Drawing.Point(24, 80);
         this.textBox1.Text = "";
         this.button1.Location = new System.Drawing.Point(264, 40);
         this.button1.Size = new System.Drawing.Size(64, 23);
         this.button1.Text = "Remove";
         this.UPDOWN_DOMAIN.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(192)), ((System.Byte)(192)));
         this.UPDOWN_DOMAIN.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
         this.UPDOWN_DOMAIN.ForeColor = System.Drawing.SystemColors.HotTrack;
         this.UPDOWN_DOMAIN.Location = new System.Drawing.Point(24, 40);
         this.UPDOWN_DOMAIN.Name = "UPDOWN_DOMAIN";
         this.UPDOWN_DOMAIN.Size = new System.Drawing.Size(232, 26);
         this.UPDOWN_DOMAIN.Sorted = true;
         this.UPDOWN_DOMAIN.TabIndex = 5;
         this.UPDOWN_DOMAIN.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
         this.UPDOWN_DOMAIN.UpDownAlign = System.Windows.Forms.LeftRightAlignment.Left;
         this.UPDOWN_DOMAIN.Wrap = true;
         this.label1.Location = new System.Drawing.Point(24, 16);
         this.label1.Size = new System.Drawing.Size(136, 23);
         this.label1.TabIndex = 9;
         this.label1.Text = "UpDownDomain Control";
         this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
         this.ClientSize = new System.Drawing.Size(344, 117);
         this.Controls.AddRange(new System.Windows.Forms.Control[] {
                                                                      this.label1,
                                                                      this.UPDOWN_DOMAIN,
                                                                      this.button1,
                                                                      this.button2,
                                                                      this.textBox1});
         this.Name = "UpDown";
         this.Text = "UpDownDomain Control";
         this.Load += new System.EventHandler(this.UpDown_Load);
         this.ResumeLayout(false);
      }
        static void Main() 
        {
            Application.Run(new UpDown());
        }
        private void UpDown_Load(object sender, System.EventArgs e)
        {
            UPDOWN_DOMAIN.Items.Add("Visual C#");
            UPDOWN_DOMAIN.Items.Add("Visual C++");
            UPDOWN_DOMAIN.Items.Add("Visual VB");
            UPDOWN_DOMAIN.Items.Add("Managed C++");
            UPDOWN_DOMAIN.Items.Add("Crystal Reports");
            UPDOWN_DOMAIN.Items.Add("MFC");
            UPDOWN_DOMAIN.Items.Add("ATL");
            UPDOWN_DOMAIN.Items.Add("COM");
            UPDOWN_DOMAIN.Items.Add("DCOM");
            UPDOWN_DOMAIN.Items.Add("COM+");
            UPDOWN_DOMAIN.Items.Add("SETUP");
            UPDOWN_DOMAIN.Items.Add("COMMAND LINE");
            UPDOWN_DOMAIN.Items.Add("WINDOWS SERVICE");
            UPDOWN_DOMAIN.Items.Add("WINDOWS LIBRARY");
            UPDOWN_DOMAIN.Items.Add("ASP .NET WEB");
            UPDOWN_DOMAIN.Items.Add("DATABASE APPLICATION");
        }
        private void button1_Click(object sender, System.EventArgs e)
        {
            int nItemSel = UPDOWN_DOMAIN.SelectedIndex;
            if ( nItemSel >= 0 ) 
            {
                UPDOWN_DOMAIN.Items.RemoveAt(nItemSel);
                UPDOWN_DOMAIN.Update();
                UPDOWN_DOMAIN.Text = "" ; 
            }
        }
        private void button2_Click(object sender, System.EventArgs e)
        {
            if ( textBox1.Text == "" ) 
            {
                MessageBox.Show("Enter a string to add");
                return ;
            }
            UPDOWN_DOMAIN.Items.Add(textBox1.Text);
            textBox1.Text = "" ; 
        }
    }


DomainUpDown.UpDownAlign

 

using System;
using System.Drawing;
using System.Collections;
using System.ruponentModel;
using System.Windows.Forms;
using System.Data;
    public class UpDown : System.Windows.Forms.Form
    {
      private System.Windows.Forms.Button button2;
      private System.Windows.Forms.TextBox textBox1;
      private System.Windows.Forms.Button button1;
      private System.Windows.Forms.DomainUpDown UPDOWN_DOMAIN;
      private System.Windows.Forms.Label label1;
        public UpDown()
        {
         this.button2 = new System.Windows.Forms.Button();
         this.textBox1 = new System.Windows.Forms.TextBox();
         this.button1 = new System.Windows.Forms.Button();
         this.UPDOWN_DOMAIN = new System.Windows.Forms.DomainUpDown();
         this.label1 = new System.Windows.Forms.Label();
         this.SuspendLayout();
         this.button2.Location = new System.Drawing.Point(136, 80);
         this.button2.Text = "Add Item";
         this.textBox1.Location = new System.Drawing.Point(24, 80);
         this.textBox1.Text = "";
         this.button1.Location = new System.Drawing.Point(264, 40);
         this.button1.Size = new System.Drawing.Size(64, 23);
         this.button1.Text = "Remove";
         this.UPDOWN_DOMAIN.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(192)), ((System.Byte)(192)));
         this.UPDOWN_DOMAIN.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
         this.UPDOWN_DOMAIN.ForeColor = System.Drawing.SystemColors.HotTrack;
         this.UPDOWN_DOMAIN.Location = new System.Drawing.Point(24, 40);
         this.UPDOWN_DOMAIN.Name = "UPDOWN_DOMAIN";
         this.UPDOWN_DOMAIN.Size = new System.Drawing.Size(232, 26);
         this.UPDOWN_DOMAIN.Sorted = true;
         this.UPDOWN_DOMAIN.TabIndex = 5;
         this.UPDOWN_DOMAIN.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
         this.UPDOWN_DOMAIN.UpDownAlign = System.Windows.Forms.LeftRightAlignment.Left;
         this.UPDOWN_DOMAIN.Wrap = true;
         this.label1.Location = new System.Drawing.Point(24, 16);
         this.label1.Size = new System.Drawing.Size(136, 23);
         this.label1.TabIndex = 9;
         this.label1.Text = "UpDownDomain Control";
         this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
         this.ClientSize = new System.Drawing.Size(344, 117);
         this.Controls.AddRange(new System.Windows.Forms.Control[] {
                                                                      this.label1,
                                                                      this.UPDOWN_DOMAIN,
                                                                      this.button1,
                                                                      this.button2,
                                                                      this.textBox1});
         this.Name = "UpDown";
         this.Text = "UpDownDomain Control";
         this.Load += new System.EventHandler(this.UpDown_Load);
         this.ResumeLayout(false);
      }
        static void Main() 
        {
            Application.Run(new UpDown());
        }
        private void UpDown_Load(object sender, System.EventArgs e)
        {
            UPDOWN_DOMAIN.Items.Add("Visual C#");
            UPDOWN_DOMAIN.Items.Add("Visual C++");
            UPDOWN_DOMAIN.Items.Add("Visual VB");
            UPDOWN_DOMAIN.Items.Add("Managed C++");
            UPDOWN_DOMAIN.Items.Add("Crystal Reports");
            UPDOWN_DOMAIN.Items.Add("MFC");
            UPDOWN_DOMAIN.Items.Add("ATL");
            UPDOWN_DOMAIN.Items.Add("COM");
            UPDOWN_DOMAIN.Items.Add("DCOM");
            UPDOWN_DOMAIN.Items.Add("COM+");
            UPDOWN_DOMAIN.Items.Add("SETUP");
            UPDOWN_DOMAIN.Items.Add("COMMAND LINE");
            UPDOWN_DOMAIN.Items.Add("WINDOWS SERVICE");
            UPDOWN_DOMAIN.Items.Add("WINDOWS LIBRARY");
            UPDOWN_DOMAIN.Items.Add("ASP .NET WEB");
            UPDOWN_DOMAIN.Items.Add("DATABASE APPLICATION");
        }
        private void button1_Click(object sender, System.EventArgs e)
        {
            int nItemSel = UPDOWN_DOMAIN.SelectedIndex;
            if ( nItemSel >= 0 ) 
            {
                UPDOWN_DOMAIN.Items.RemoveAt(nItemSel);
                UPDOWN_DOMAIN.Update();
                UPDOWN_DOMAIN.Text = "" ; 
            }
        }
        private void button2_Click(object sender, System.EventArgs e)
        {
            if ( textBox1.Text == "" ) 
            {
                MessageBox.Show("Enter a string to add");
                return ;
            }
            UPDOWN_DOMAIN.Items.Add(textBox1.Text);
            textBox1.Text = "" ; 
        }
    }


DomainUpDown.Wrap

 

using System;
using System.Drawing;
using System.Collections;
using System.ruponentModel;
using System.Windows.Forms;
using System.Data;
    public class UpDown : System.Windows.Forms.Form
    {
      private System.Windows.Forms.Button button2;
      private System.Windows.Forms.TextBox textBox1;
      private System.Windows.Forms.Button button1;
      private System.Windows.Forms.DomainUpDown UPDOWN_DOMAIN;
      private System.Windows.Forms.Label label1;
        public UpDown()
        {
         this.button2 = new System.Windows.Forms.Button();
         this.textBox1 = new System.Windows.Forms.TextBox();
         this.button1 = new System.Windows.Forms.Button();
         this.UPDOWN_DOMAIN = new System.Windows.Forms.DomainUpDown();
         this.label1 = new System.Windows.Forms.Label();
         this.SuspendLayout();
         this.button2.Location = new System.Drawing.Point(136, 80);
         this.button2.Text = "Add Item";
         this.textBox1.Location = new System.Drawing.Point(24, 80);
         this.textBox1.Text = "";
         this.button1.Location = new System.Drawing.Point(264, 40);
         this.button1.Size = new System.Drawing.Size(64, 23);
         this.button1.Text = "Remove";
         this.UPDOWN_DOMAIN.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(192)), ((System.Byte)(192)));
         this.UPDOWN_DOMAIN.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
         this.UPDOWN_DOMAIN.ForeColor = System.Drawing.SystemColors.HotTrack;
         this.UPDOWN_DOMAIN.Location = new System.Drawing.Point(24, 40);
         this.UPDOWN_DOMAIN.Name = "UPDOWN_DOMAIN";
         this.UPDOWN_DOMAIN.Size = new System.Drawing.Size(232, 26);
         this.UPDOWN_DOMAIN.Sorted = true;
         this.UPDOWN_DOMAIN.TabIndex = 5;
         this.UPDOWN_DOMAIN.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
         this.UPDOWN_DOMAIN.UpDownAlign = System.Windows.Forms.LeftRightAlignment.Left;
         this.UPDOWN_DOMAIN.Wrap = true;
         this.label1.Location = new System.Drawing.Point(24, 16);
         this.label1.Size = new System.Drawing.Size(136, 23);
         this.label1.TabIndex = 9;
         this.label1.Text = "UpDownDomain Control";
         this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
         this.ClientSize = new System.Drawing.Size(344, 117);
         this.Controls.AddRange(new System.Windows.Forms.Control[] {
                                                                      this.label1,
                                                                      this.UPDOWN_DOMAIN,
                                                                      this.button1,
                                                                      this.button2,
                                                                      this.textBox1});
         this.Name = "UpDown";
         this.Text = "UpDownDomain Control";
         this.Load += new System.EventHandler(this.UpDown_Load);
         this.ResumeLayout(false);
      }
        static void Main() 
        {
            Application.Run(new UpDown());
        }
        private void UpDown_Load(object sender, System.EventArgs e)
        {
            UPDOWN_DOMAIN.Items.Add("Visual C#");
            UPDOWN_DOMAIN.Items.Add("Visual C++");
            UPDOWN_DOMAIN.Items.Add("Visual VB");
            UPDOWN_DOMAIN.Items.Add("Managed C++");
            UPDOWN_DOMAIN.Items.Add("Crystal Reports");
            UPDOWN_DOMAIN.Items.Add("MFC");
            UPDOWN_DOMAIN.Items.Add("ATL");
            UPDOWN_DOMAIN.Items.Add("COM");
            UPDOWN_DOMAIN.Items.Add("DCOM");
            UPDOWN_DOMAIN.Items.Add("COM+");
            UPDOWN_DOMAIN.Items.Add("SETUP");
            UPDOWN_DOMAIN.Items.Add("COMMAND LINE");
            UPDOWN_DOMAIN.Items.Add("WINDOWS SERVICE");
            UPDOWN_DOMAIN.Items.Add("WINDOWS LIBRARY");
            UPDOWN_DOMAIN.Items.Add("ASP .NET WEB");
            UPDOWN_DOMAIN.Items.Add("DATABASE APPLICATION");
        }
        private void button1_Click(object sender, System.EventArgs e)
        {
            int nItemSel = UPDOWN_DOMAIN.SelectedIndex;
            if ( nItemSel >= 0 ) 
            {
                UPDOWN_DOMAIN.Items.RemoveAt(nItemSel);
                UPDOWN_DOMAIN.Update();
                UPDOWN_DOMAIN.Text = "" ; 
            }
        }
        private void button2_Click(object sender, System.EventArgs e)
        {
            if ( textBox1.Text == "" ) 
            {
                MessageBox.Show("Enter a string to add");
                return ;
            }
            UPDOWN_DOMAIN.Items.Add(textBox1.Text);
            textBox1.Text = "" ; 
        }
    }


extends DomainUpDown

 
using System;
using System.Drawing;
using System.Collections;
using System.ruponentModel;
using System.Windows.Forms;
using System.Data;
    public class UpDownDerived : System.Windows.Forms.Form
    {
        private System.Windows.Forms.Label label1;
        private MyUpDownControl mDC = null ; 
        public UpDownDerived()
        {
            this.mDC = new MyUpDownControl();
            this.label1 = new System.Windows.Forms.Label();
            this.SuspendLayout();
            this.mDC.Items.Add("FRANCE");
            this.mDC.Items.Add("ITALY");
            this.mDC.Items.Add("USA");
            this.mDC.Items.Add("UK");
            this.mDC.Items.Add("AUSTRALIA");
            this.mDC.Items.Add("INDIA");
            this.mDC.Items.Add("ZAMBIA");
            this.mDC.Items.Add("MALASYIA");
            this.mDC.Location = new System.Drawing.Point(40, 40);
            this.label1.Location = new System.Drawing.Point(16, 16);
            this.label1.Size = new System.Drawing.Size(200, 16);
            this.label1.Text = "Derived DomainUpDown Controller";
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize = new System.Drawing.Size(248, 85);
            this.Controls.AddRange(new System.Windows.Forms.Control[] {
                                                                          this.label1,
                                                                          this.mDC});
            this.Name = "UpDownDerived";
            this.Text = "My Domain Controller";
            this.Load += new System.EventHandler(this.UpDownDerived_Load);
            this.ResumeLayout(false);
        }
        static void Main() 
        {
            Application.Run(new UpDownDerived());
        }
        private void UpDownDerived_Load(object sender, System.EventArgs e)
        {
        }
    }
    public class MyUpDownControl : System.Windows.Forms.DomainUpDown  
    {
        private int currentPos  =0;
        private string DisplayText ="";
        public MyUpDownControl()
        {
            Items.Add("FRANCE");
            Items.Add("ITALY");
            Items.Add("USA");
            Items.Add("UK");
            Items.Add("AUSTRALIA");
            Items.Add("INDIA");
            Items.Add("ZAMBIA");
            Items.Add("MALASYIA");
        
        }
        public override void DownButton()
        {
            // Check if the Down Arrow is clicked
            currentPos ++;
            if ( currentPos >= Items.Count )
                currentPos = 0 ; 
            UpdateEditText();
        }
        public override void UpButton()
        {
            // Check if the Up Arrow is clicked
            currentPos -- ; 
            if ( currentPos < 0 ) currentPos = Items.Count-1 ; 
            UpdateEditText();
        }
        protected override void UpdateEditText()
        {
            // Update the EditBox 
            DisplayText = (string)this.Items[currentPos ];
            this.Text = DisplayText; 
        }
        public void Sort()
        {
            if ( this.Sorted ) 
                this.Sorted= false ;
            else
                this.Sorted= true ;
            if ( this.Sorted ) 
                this.Sort() ;
            
            UpdateEditText() ;
        }
    }