Form1.Designer.cs 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. namespace WindowLock
  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. label1 = new Label();
  29. button1 = new Button();
  30. panel1 = new Panel();
  31. label2 = new Label();
  32. SuspendLayout();
  33. //
  34. // label1
  35. //
  36. label1.AutoSize = true;
  37. label1.Location = new Point(56, 102);
  38. label1.Name = "label1";
  39. label1.Size = new Size(59, 15);
  40. label1.TabIndex = 0;
  41. label1.Text = "屏幕唤醒";
  42. //
  43. // button1
  44. //
  45. button1.Location = new Point(44, 120);
  46. button1.Name = "button1";
  47. button1.Size = new Size(728, 54);
  48. button1.TabIndex = 1;
  49. button1.Text = "启动";
  50. button1.UseVisualStyleBackColor = true;
  51. button1.Click += button1_Click;
  52. //
  53. // panel1
  54. //
  55. panel1.Location = new Point(44, 211);
  56. panel1.Name = "panel1";
  57. panel1.Size = new Size(728, 227);
  58. panel1.TabIndex = 2;
  59. //
  60. // label2
  61. //
  62. label2.AutoSize = true;
  63. label2.Location = new Point(56, 193);
  64. label2.Name = "label2";
  65. label2.Size = new Size(59, 15);
  66. label2.TabIndex = 3;
  67. label2.Text = "连接日志";
  68. //
  69. // Form1
  70. //
  71. AutoScaleDimensions = new SizeF(7F, 15F);
  72. AutoScaleMode = AutoScaleMode.Font;
  73. ClientSize = new Size(800, 450);
  74. Controls.Add(label2);
  75. Controls.Add(panel1);
  76. Controls.Add(button1);
  77. Controls.Add(label1);
  78. Name = "Form1";
  79. Text = "Form1";
  80. ResumeLayout(false);
  81. PerformLayout();
  82. }
  83. #endregion
  84. private Label label1;
  85. private Button button1;
  86. private Panel panel1;
  87. private Label label2;
  88. }
  89. }