Form1.Designer.cs 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. namespace OneNote2PDF
  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.panel1 = new System.Windows.Forms.Panel();
  29. this.btnConvert = new System.Windows.Forms.Button();
  30. this.SuspendLayout();
  31. //
  32. // panel1
  33. //
  34. this.panel1.Location = new System.Drawing.Point(209, 171);
  35. this.panel1.Name = "panel1";
  36. this.panel1.Size = new System.Drawing.Size(200, 100);
  37. this.panel1.TabIndex = 0;
  38. //
  39. // btnConvert
  40. //
  41. this.btnConvert.Location = new System.Drawing.Point(272, 309);
  42. this.btnConvert.Name = "btnConvert";
  43. this.btnConvert.Size = new System.Drawing.Size(75, 23);
  44. this.btnConvert.TabIndex = 1;
  45. this.btnConvert.Text = "转换";
  46. this.btnConvert.UseVisualStyleBackColor = true;
  47. //
  48. // Form1
  49. //
  50. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  51. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  52. this.ClientSize = new System.Drawing.Size(800, 450);
  53. this.Controls.Add(this.btnConvert);
  54. this.Controls.Add(this.panel1);
  55. this.Name = "Form1";
  56. this.Text = "Form1";
  57. this.ResumeLayout(false);
  58. }
  59. #endregion
  60. private System.Windows.Forms.Panel panel1;
  61. private System.Windows.Forms.Button btnConvert;
  62. }
  63. }