106 lines
		
	
	
		
			9.5 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			106 lines
		
	
	
		
			9.5 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace DevComponents.DotNetBar.Design
 | 
						||
{
 | 
						||
    partial class CheckedListBoxSelector
 | 
						||
    {
 | 
						||
        /// <summary> 
 | 
						||
        /// Required designer variable.
 | 
						||
        /// </summary>
 | 
						||
        private System.ComponentModel.IContainer components = null;
 | 
						||
 | 
						||
        /// <summary> 
 | 
						||
        /// Clean up any resources being used.
 | 
						||
        /// </summary>
 | 
						||
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
 | 
						||
        protected override void Dispose(bool disposing)
 | 
						||
        {
 | 
						||
            if (disposing && (components != null))
 | 
						||
            {
 | 
						||
                components.Dispose();
 | 
						||
            }
 | 
						||
            base.Dispose(disposing);
 | 
						||
        }
 | 
						||
 | 
						||
        #region Component 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.checkedListBox1 = new System.Windows.Forms.CheckedListBox();
 | 
						||
            this.panel1 = new System.Windows.Forms.Panel();
 | 
						||
            this.buttonMoveDown = new DevComponents.DotNetBar.ButtonX();
 | 
						||
            this.buttonMoveUp = new DevComponents.DotNetBar.ButtonX();
 | 
						||
            this.panel1.SuspendLayout();
 | 
						||
            this.SuspendLayout();
 | 
						||
            // 
 | 
						||
            // checkedListBox1
 | 
						||
            // 
 | 
						||
            this.checkedListBox1.Dock = System.Windows.Forms.DockStyle.Fill;
 | 
						||
            this.checkedListBox1.FormattingEnabled = true;
 | 
						||
            this.checkedListBox1.IntegralHeight = false;
 | 
						||
            this.checkedListBox1.Location = new System.Drawing.Point(0, 0);
 | 
						||
            this.checkedListBox1.Name = "checkedListBox1";
 | 
						||
            this.checkedListBox1.Size = new System.Drawing.Size(231, 196);
 | 
						||
            this.checkedListBox1.TabIndex = 0;
 | 
						||
            this.checkedListBox1.SelectedIndexChanged += new System.EventHandler(this.checkedListBox1_SelectedIndexChanged);
 | 
						||
            // 
 | 
						||
            // panel1
 | 
						||
            // 
 | 
						||
            this.panel1.Controls.Add(this.buttonMoveDown);
 | 
						||
            this.panel1.Controls.Add(this.buttonMoveUp);
 | 
						||
            this.panel1.Dock = System.Windows.Forms.DockStyle.Right;
 | 
						||
            this.panel1.Location = new System.Drawing.Point(231, 0);
 | 
						||
            this.panel1.Name = "panel1";
 | 
						||
            this.panel1.Size = new System.Drawing.Size(44, 196);
 | 
						||
            this.panel1.TabIndex = 1;
 | 
						||
            // 
 | 
						||
            // buttonMoveDown
 | 
						||
            // 
 | 
						||
            this.buttonMoveDown.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
 | 
						||
            this.buttonMoveDown.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
 | 
						||
            this.buttonMoveDown.Enabled = false;
 | 
						||
            this.buttonMoveDown.Location = new System.Drawing.Point(6, 89);
 | 
						||
            this.buttonMoveDown.Name = "buttonMoveDown";
 | 
						||
            this.buttonMoveDown.Size = new System.Drawing.Size(30, 33);
 | 
						||
            this.buttonMoveDown.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
 | 
						||
            this.buttonMoveDown.Symbol = "";
 | 
						||
            this.buttonMoveDown.TabIndex = 1;
 | 
						||
            this.buttonMoveDown.Click += new System.EventHandler(this.buttonMoveDown_Click);
 | 
						||
            // 
 | 
						||
            // buttonMoveUp
 | 
						||
            // 
 | 
						||
            this.buttonMoveUp.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
 | 
						||
            this.buttonMoveUp.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
 | 
						||
            this.buttonMoveUp.Enabled = false;
 | 
						||
            this.buttonMoveUp.Location = new System.Drawing.Point(6, 50);
 | 
						||
            this.buttonMoveUp.Name = "buttonMoveUp";
 | 
						||
            this.buttonMoveUp.Size = new System.Drawing.Size(30, 33);
 | 
						||
            this.buttonMoveUp.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
 | 
						||
            this.buttonMoveUp.Symbol = "";
 | 
						||
            this.buttonMoveUp.TabIndex = 0;
 | 
						||
            this.buttonMoveUp.Click += new System.EventHandler(this.buttonMoveUp_Click);
 | 
						||
            // 
 | 
						||
            // CheckedListBoxSelector
 | 
						||
            // 
 | 
						||
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
 | 
						||
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 | 
						||
            this.Controls.Add(this.checkedListBox1);
 | 
						||
            this.Controls.Add(this.panel1);
 | 
						||
            this.Name = "CheckedListBoxSelector";
 | 
						||
            this.Size = new System.Drawing.Size(275, 196);
 | 
						||
            this.panel1.ResumeLayout(false);
 | 
						||
            this.ResumeLayout(false);
 | 
						||
 | 
						||
        }
 | 
						||
 | 
						||
        #endregion
 | 
						||
 | 
						||
        private System.Windows.Forms.CheckedListBox checkedListBox1;
 | 
						||
        private System.Windows.Forms.Panel panel1;
 | 
						||
        private DevComponents.DotNetBar.ButtonX buttonMoveDown;
 | 
						||
        private DevComponents.DotNetBar.ButtonX buttonMoveUp;
 | 
						||
    }
 | 
						||
}
 |