AboutDialog.Designer.cs 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. namespace com.insanitydesign.MarkdownViewerPlusPlus.Forms
  2. {
  3. partial class AboutDialog
  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.btnClose = new System.Windows.Forms.Button();
  29. this.btnVisit = new System.Windows.Forms.Button();
  30. this.lblAbout = new System.Windows.Forms.Label();
  31. this.picBoxDonate = new System.Windows.Forms.PictureBox();
  32. ((System.ComponentModel.ISupportInitialize)(this.picBoxDonate)).BeginInit();
  33. this.SuspendLayout();
  34. //
  35. // btnClose
  36. //
  37. this.btnClose.Location = new System.Drawing.Point(212, 254);
  38. this.btnClose.Name = "btnClose";
  39. this.btnClose.Size = new System.Drawing.Size(94, 23);
  40. this.btnClose.TabIndex = 0;
  41. this.btnClose.Text = "Close";
  42. this.btnClose.UseVisualStyleBackColor = true;
  43. this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
  44. //
  45. // btnVisit
  46. //
  47. this.btnVisit.Location = new System.Drawing.Point(12, 254);
  48. this.btnVisit.Name = "btnVisit";
  49. this.btnVisit.Size = new System.Drawing.Size(94, 23);
  50. this.btnVisit.TabIndex = 1;
  51. this.btnVisit.Text = "Visit Website";
  52. this.btnVisit.UseVisualStyleBackColor = true;
  53. this.btnVisit.Click += new System.EventHandler(this.btnVisit_Click);
  54. //
  55. // lblAbout
  56. //
  57. this.lblAbout.Location = new System.Drawing.Point(13, 13);
  58. this.lblAbout.Name = "lblAbout";
  59. this.lblAbout.Size = new System.Drawing.Size(259, 238);
  60. this.lblAbout.TabIndex = 2;
  61. //
  62. // picBoxDonate
  63. //
  64. this.picBoxDonate.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  65. this.picBoxDonate.Image = global::com.insanitydesign.MarkdownViewerPlusPlus.Properties.Resources.Donate_PayPal_green;
  66. this.picBoxDonate.InitialImage = null;
  67. this.picBoxDonate.Location = new System.Drawing.Point(112, 254);
  68. this.picBoxDonate.Name = "picBoxDonate";
  69. this.picBoxDonate.Size = new System.Drawing.Size(94, 23);
  70. this.picBoxDonate.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
  71. this.picBoxDonate.TabIndex = 3;
  72. this.picBoxDonate.TabStop = false;
  73. this.picBoxDonate.Click += new System.EventHandler(this.picBoxDonate_Click);
  74. //
  75. // AboutDialog
  76. //
  77. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  78. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  79. this.ClientSize = new System.Drawing.Size(318, 289);
  80. this.Controls.Add(this.picBoxDonate);
  81. this.Controls.Add(this.lblAbout);
  82. this.Controls.Add(this.btnVisit);
  83. this.Controls.Add(this.btnClose);
  84. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  85. this.MaximizeBox = false;
  86. this.MinimizeBox = false;
  87. this.Name = "AboutDialog";
  88. this.ShowIcon = false;
  89. this.ShowInTaskbar = false;
  90. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  91. this.Text = "About MarkdownViewer++";
  92. ((System.ComponentModel.ISupportInitialize)(this.picBoxDonate)).EndInit();
  93. this.ResumeLayout(false);
  94. }
  95. #endregion
  96. private System.Windows.Forms.Button btnClose;
  97. private System.Windows.Forms.Button btnVisit;
  98. private System.Windows.Forms.Label lblAbout;
  99. private System.Windows.Forms.PictureBox picBoxDonate;
  100. }
  101. }