HeadBar.Designer.cs 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. namespace UAS_LabelMachine.CustomControl
  2. {
  3. partial class HeadBar
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HeadBar));
  29. this.MinWindow = new System.Windows.Forms.PictureBox();
  30. this.CloseWindow = new System.Windows.Forms.PictureBox();
  31. ((System.ComponentModel.ISupportInitialize)(this.MinWindow)).BeginInit();
  32. ((System.ComponentModel.ISupportInitialize)(this.CloseWindow)).BeginInit();
  33. this.SuspendLayout();
  34. //
  35. // MinWindow
  36. //
  37. resources.ApplyResources(this.MinWindow, "MinWindow");
  38. this.MinWindow.Image = global::UAS_LabelMachine.Properties.Resources.close_up_32px_1181430_easyicon_net;
  39. this.MinWindow.Name = "MinWindow";
  40. this.MinWindow.TabStop = false;
  41. this.MinWindow.Click += new System.EventHandler(this.CloseWindow_Click);
  42. //
  43. // CloseWindow
  44. //
  45. resources.ApplyResources(this.CloseWindow, "CloseWindow");
  46. this.CloseWindow.Image = global::UAS_LabelMachine.Properties.Resources.close_32px_1181428_easyicon_net;
  47. this.CloseWindow.Name = "CloseWindow";
  48. this.CloseWindow.TabStop = false;
  49. this.CloseWindow.Click += new System.EventHandler(this.MinWindow_Click);
  50. //
  51. // HeadBar
  52. //
  53. resources.ApplyResources(this, "$this");
  54. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  55. this.BackColor = System.Drawing.SystemColors.ControlDarkDark;
  56. this.Controls.Add(this.MinWindow);
  57. this.Controls.Add(this.CloseWindow);
  58. this.Name = "HeadBar";
  59. ((System.ComponentModel.ISupportInitialize)(this.MinWindow)).EndInit();
  60. ((System.ComponentModel.ISupportInitialize)(this.CloseWindow)).EndInit();
  61. this.ResumeLayout(false);
  62. }
  63. #endregion
  64. private System.Windows.Forms.PictureBox MinWindow;
  65. private System.Windows.Forms.PictureBox CloseWindow;
  66. }
  67. }