TimePickerWithCombo.Designer.cs 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. namespace UAS_MES_NEW.CustomControl.TimePickerWithCombo
  2. {
  3. partial class TimePickerWithCombo
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 组件设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.comboBox1 = new System.Windows.Forms.ComboBox();
  29. this.dateTimePicker2 = new System.Windows.Forms.DateTimePicker();
  30. this.dateTimePicker3 = new System.Windows.Forms.DateTimePicker();
  31. this.label1 = new System.Windows.Forms.Label();
  32. this.SuspendLayout();
  33. //
  34. // comboBox1
  35. //
  36. this.comboBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  37. | System.Windows.Forms.AnchorStyles.Left)));
  38. this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  39. this.comboBox1.FormattingEnabled = true;
  40. this.comboBox1.Items.AddRange(new object[] {
  41. "今天",
  42. "昨天",
  43. "本月",
  44. "上个月",
  45. "本年度",
  46. "上年度",
  47. "自定义"});
  48. this.comboBox1.Location = new System.Drawing.Point(2, 1);
  49. this.comboBox1.Name = "comboBox1";
  50. this.comboBox1.Size = new System.Drawing.Size(67, 20);
  51. this.comboBox1.TabIndex = 0;
  52. this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
  53. this.comboBox1.SelectedValueChanged += new System.EventHandler(this.comboBox1_SelectedValueChanged);
  54. //
  55. // dateTimePicker2
  56. //
  57. this.dateTimePicker2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  58. | System.Windows.Forms.AnchorStyles.Left)));
  59. this.dateTimePicker2.Location = new System.Drawing.Point(71, 1);
  60. this.dateTimePicker2.Name = "dateTimePicker2";
  61. this.dateTimePicker2.Size = new System.Drawing.Size(141, 21);
  62. this.dateTimePicker2.TabIndex = 2;
  63. this.dateTimePicker2.ValueChanged += new System.EventHandler(this.dateTimePicker2_ValueChanged);
  64. //
  65. // dateTimePicker3
  66. //
  67. this.dateTimePicker3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  68. | System.Windows.Forms.AnchorStyles.Left)));
  69. this.dateTimePicker3.Location = new System.Drawing.Point(233, 1);
  70. this.dateTimePicker3.Name = "dateTimePicker3";
  71. this.dateTimePicker3.Size = new System.Drawing.Size(141, 21);
  72. this.dateTimePicker3.TabIndex = 3;
  73. this.dateTimePicker3.ValueChanged += new System.EventHandler(this.dateTimePicker3_ValueChanged);
  74. //
  75. // label1
  76. //
  77. this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  78. | System.Windows.Forms.AnchorStyles.Left)));
  79. this.label1.AutoSize = true;
  80. this.label1.Location = new System.Drawing.Point(217, 7);
  81. this.label1.Name = "label1";
  82. this.label1.Size = new System.Drawing.Size(11, 12);
  83. this.label1.TabIndex = 4;
  84. this.label1.Text = "-";
  85. //
  86. // TimePickerWithCombo
  87. //
  88. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  89. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  90. this.Controls.Add(this.label1);
  91. this.Controls.Add(this.dateTimePicker3);
  92. this.Controls.Add(this.dateTimePicker2);
  93. this.Controls.Add(this.comboBox1);
  94. this.Name = "TimePickerWithCombo";
  95. this.Size = new System.Drawing.Size(380, 23);
  96. this.ResumeLayout(true);
  97. this.PerformLayout();
  98. }
  99. #endregion
  100. private System.Windows.Forms.ComboBox comboBox1;
  101. private System.Windows.Forms.DateTimePicker dateTimePicker2;
  102. private System.Windows.Forms.DateTimePicker dateTimePicker3;
  103. private System.Windows.Forms.Label label1;
  104. }
  105. }