123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- namespace com.insanitydesign.MarkdownViewerPlusPlus.Forms
- {
- partial class AboutDialog
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.btnClose = new System.Windows.Forms.Button();
- this.btnVisit = new System.Windows.Forms.Button();
- this.lblAbout = new System.Windows.Forms.Label();
- this.picBoxDonate = new System.Windows.Forms.PictureBox();
- ((System.ComponentModel.ISupportInitialize)(this.picBoxDonate)).BeginInit();
- this.SuspendLayout();
- //
- // btnClose
- //
- this.btnClose.Location = new System.Drawing.Point(212, 254);
- this.btnClose.Name = "btnClose";
- this.btnClose.Size = new System.Drawing.Size(94, 23);
- this.btnClose.TabIndex = 0;
- this.btnClose.Text = "Close";
- this.btnClose.UseVisualStyleBackColor = true;
- this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
- //
- // btnVisit
- //
- this.btnVisit.Location = new System.Drawing.Point(12, 254);
- this.btnVisit.Name = "btnVisit";
- this.btnVisit.Size = new System.Drawing.Size(94, 23);
- this.btnVisit.TabIndex = 1;
- this.btnVisit.Text = "Visit Website";
- this.btnVisit.UseVisualStyleBackColor = true;
- this.btnVisit.Click += new System.EventHandler(this.btnVisit_Click);
- //
- // lblAbout
- //
- this.lblAbout.Location = new System.Drawing.Point(13, 13);
- this.lblAbout.Name = "lblAbout";
- this.lblAbout.Size = new System.Drawing.Size(259, 238);
- this.lblAbout.TabIndex = 2;
- //
- // picBoxDonate
- //
- this.picBoxDonate.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
- this.picBoxDonate.Image = global::com.insanitydesign.MarkdownViewerPlusPlus.Properties.Resources.Donate_PayPal_green;
- this.picBoxDonate.InitialImage = null;
- this.picBoxDonate.Location = new System.Drawing.Point(112, 254);
- this.picBoxDonate.Name = "picBoxDonate";
- this.picBoxDonate.Size = new System.Drawing.Size(94, 23);
- this.picBoxDonate.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
- this.picBoxDonate.TabIndex = 3;
- this.picBoxDonate.TabStop = false;
- this.picBoxDonate.Click += new System.EventHandler(this.picBoxDonate_Click);
- //
- // AboutDialog
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(318, 289);
- this.Controls.Add(this.picBoxDonate);
- this.Controls.Add(this.lblAbout);
- this.Controls.Add(this.btnVisit);
- this.Controls.Add(this.btnClose);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
- this.MaximizeBox = false;
- this.MinimizeBox = false;
- this.Name = "AboutDialog";
- this.ShowIcon = false;
- this.ShowInTaskbar = false;
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
- this.Text = "About MarkdownViewer++";
- ((System.ComponentModel.ISupportInitialize)(this.picBoxDonate)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.Button btnClose;
- private System.Windows.Forms.Button btnVisit;
- private System.Windows.Forms.Label lblAbout;
- private System.Windows.Forms.PictureBox picBoxDonate;
- }
- }
|