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

组合框控件

开发平台:

C#

  1. namespace CustomComboDemo
  2. {
  3.     partial class Form1
  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 Windows Form 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.customComboBox3 = new CustomComboBox.CustomComboBox();
  29.             this.customComboBox2 = new CustomComboBox.CustomComboBox();
  30.             this.customComboBox1 = new CustomComboBox.CustomComboBox();
  31.             this.SuspendLayout();
  32.             // 
  33.             // customComboBox3
  34.             // 
  35.             this.customComboBox3.AllowResizeDropDown = true;
  36.             this.customComboBox3.ControlSize = new System.Drawing.Size(121, 106);
  37.             this.customComboBox3.DropDownControl = null;
  38.             this.customComboBox3.DropSize = new System.Drawing.Size(121, 106);
  39.             this.customComboBox3.FormattingEnabled = true;
  40.             this.customComboBox3.Location = new System.Drawing.Point(12, 130);
  41.             this.customComboBox3.Name = "customComboBox3";
  42.             this.customComboBox3.Size = new System.Drawing.Size(329, 21);
  43.             this.customComboBox3.TabIndex = 8;
  44.             this.customComboBox3.Text = "Click arrow to view a rich text box...";
  45.             // 
  46.             // customComboBox2
  47.             // 
  48.             this.customComboBox2.AllowResizeDropDown = true;
  49.             this.customComboBox2.ControlSize = new System.Drawing.Size(1, 1);
  50.             this.customComboBox2.DropDownControl = null;
  51.             this.customComboBox2.DropDownSizeMode = CustomComboBox.CustomComboBox.SizeMode.UseControlSize;
  52.             this.customComboBox2.DropSize = new System.Drawing.Size(121, 106);
  53.             this.customComboBox2.FormattingEnabled = true;
  54.             this.customComboBox2.Location = new System.Drawing.Point(12, 71);
  55.             this.customComboBox2.Name = "customComboBox2";
  56.             this.customComboBox2.Size = new System.Drawing.Size(329, 21);
  57.             this.customComboBox2.TabIndex = 7;
  58.             this.customComboBox2.Text = "Click arrow to view a custom user control...";
  59.             // 
  60.             // customComboBox1
  61.             // 
  62.             this.customComboBox1.AllowResizeDropDown = false;
  63.             this.customComboBox1.ControlSize = new System.Drawing.Size(320, 222);
  64.             this.customComboBox1.DropDownControl = null;
  65.             this.customComboBox1.DropDownSizeMode = CustomComboBox.CustomComboBox.SizeMode.UseDropDownSize;
  66.             this.customComboBox1.DropSize = new System.Drawing.Size(420, 200);
  67.             this.customComboBox1.FormattingEnabled = true;
  68.             this.customComboBox1.Location = new System.Drawing.Point(12, 12);
  69.             this.customComboBox1.Name = "customComboBox1";
  70.             this.customComboBox1.Size = new System.Drawing.Size(329, 21);
  71.             this.customComboBox1.TabIndex = 6;
  72.             this.customComboBox1.Text = "Click arrow to view data grid...";
  73.             // 
  74.             // Form1
  75.             // 
  76.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  77.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  78.             this.ClientSize = new System.Drawing.Size(369, 185);
  79.             this.Controls.Add(this.customComboBox3);
  80.             this.Controls.Add(this.customComboBox2);
  81.             this.Controls.Add(this.customComboBox1);
  82.             this.Name = "Form1";
  83.             this.Text = "Custom ComboBox Demonstration";
  84.             this.Load += new System.EventHandler(this.Form1_Load);
  85.             this.ResumeLayout(false);
  86.         }
  87.         #endregion
  88.         private CustomComboBox.CustomComboBox customComboBox1;
  89.         private CustomComboBox.CustomComboBox customComboBox2;
  90.         private CustomComboBox.CustomComboBox customComboBox3;
  91.     }
  92. }