UserControl1.Designer.cs
上传用户:cpw91211
上传日期:2021-01-18
资源大小:46k
文件大小:6k
源码类别:

组合框控件

开发平台:

C#

  1. namespace CustomComboDemo
  2. {
  3.     partial class UserControl1
  4.     {
  5.         /// <summary> 
  6.         /// Required designer variable.
  7.         /// </summary>
  8.         private System.ComponentModel.IContainer components = null;
  9.         /// <summary> 
  10.         /// Clean up any resources being used.
  11.         /// </summary>
  12.         /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13.         protected override void Dispose(bool disposing)
  14.         {
  15.             if (disposing && (components != null))
  16.             {
  17.                 components.Dispose();
  18.             }
  19.             base.Dispose(disposing);
  20.         }
  21.         #region Component Designer generated code
  22.         /// <summary> 
  23.         /// Required method for Designer support - do not modify 
  24.         /// the contents of this method with the code editor.
  25.         /// </summary>
  26.         private void InitializeComponent()
  27.         {
  28.             this.button1 = new System.Windows.Forms.Button();
  29.             this.checkBox1 = new System.Windows.Forms.CheckBox();
  30.             this.checkBox2 = new System.Windows.Forms.CheckBox();
  31.             this.checkedListBox1 = new System.Windows.Forms.CheckedListBox();
  32.             this.button2 = new System.Windows.Forms.Button();
  33.             this.button3 = new System.Windows.Forms.Button();
  34.             this.SuspendLayout();
  35.             // 
  36.             // button1
  37.             // 
  38.             this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  39.             this.button1.Location = new System.Drawing.Point(184, 79);
  40.             this.button1.Name = "button1";
  41.             this.button1.Size = new System.Drawing.Size(75, 23);
  42.             this.button1.TabIndex = 5;
  43.             this.button1.Text = "button1";
  44.             this.button1.UseVisualStyleBackColor = true;
  45.             // 
  46.             // checkBox1
  47.             // 
  48.             this.checkBox1.AutoSize = true;
  49.             this.checkBox1.Location = new System.Drawing.Point(16, 14);
  50.             this.checkBox1.Name = "checkBox1";
  51.             this.checkBox1.Size = new System.Drawing.Size(80, 17);
  52.             this.checkBox1.TabIndex = 0;
  53.             this.checkBox1.Text = "checkBox1";
  54.             this.checkBox1.UseVisualStyleBackColor = true;
  55.             // 
  56.             // checkBox2
  57.             // 
  58.             this.checkBox2.AutoSize = true;
  59.             this.checkBox2.Location = new System.Drawing.Point(16, 37);
  60.             this.checkBox2.Name = "checkBox2";
  61.             this.checkBox2.Size = new System.Drawing.Size(80, 17);
  62.             this.checkBox2.TabIndex = 1;
  63.             this.checkBox2.Text = "checkBox2";
  64.             this.checkBox2.UseVisualStyleBackColor = true;
  65.             // 
  66.             // checkedListBox1
  67.             // 
  68.             this.checkedListBox1.FormattingEnabled = true;
  69.             this.checkedListBox1.IntegralHeight = false;
  70.             this.checkedListBox1.Items.AddRange(new object[] {
  71.             "Item 1",
  72.             "Item 2",
  73.             "Item 3"});
  74.             this.checkedListBox1.Location = new System.Drawing.Point(102, 9);
  75.             this.checkedListBox1.Name = "checkedListBox1";
  76.             this.checkedListBox1.Size = new System.Drawing.Size(157, 64);
  77.             this.checkedListBox1.TabIndex = 2;
  78.             // 
  79.             // button2
  80.             // 
  81.             this.button2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  82.             this.button2.Location = new System.Drawing.Point(102, 79);
  83.             this.button2.Name = "button2";
  84.             this.button2.Size = new System.Drawing.Size(75, 23);
  85.             this.button2.TabIndex = 4;
  86.             this.button2.Text = "button2";
  87.             this.button2.UseVisualStyleBackColor = true;
  88.             // 
  89.             // button3
  90.             // 
  91.             this.button3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  92.             this.button3.Location = new System.Drawing.Point(21, 79);
  93.             this.button3.Name = "button3";
  94.             this.button3.Size = new System.Drawing.Size(75, 23);
  95.             this.button3.TabIndex = 3;
  96.             this.button3.Text = "button3";
  97.             this.button3.UseVisualStyleBackColor = true;
  98.             // 
  99.             // UserControl1
  100.             // 
  101.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  102.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  103.             this.Controls.Add(this.button3);
  104.             this.Controls.Add(this.button2);
  105.             this.Controls.Add(this.checkBox2);
  106.             this.Controls.Add(this.checkBox1);
  107.             this.Controls.Add(this.button1);
  108.             this.Controls.Add(this.checkedListBox1);
  109.             this.Name = "UserControl1";
  110.             this.Size = new System.Drawing.Size(262, 106);
  111.             this.SizeChanged += new System.EventHandler(this.UserControl1_SizeChanged);
  112.             this.ResumeLayout(false);
  113.             this.PerformLayout();
  114.         }
  115.         #endregion
  116.         private System.Windows.Forms.Button button1;
  117.         private System.Windows.Forms.CheckBox checkBox1;
  118.         private System.Windows.Forms.CheckBox checkBox2;
  119.         private System.Windows.Forms.CheckedListBox checkedListBox1;
  120.         private System.Windows.Forms.Button button2;
  121.         private System.Windows.Forms.Button button3;
  122.     }
  123. }