123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- namespace FastReport.Forms
- {
- partial class LoadAutoSaveForm
- {
- /// <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.btnCancel = new System.Windows.Forms.Button();
- this.btnRestore = new System.Windows.Forms.Button();
- this.lblMessage = new System.Windows.Forms.Label();
- this.picture = new System.Windows.Forms.PictureBox();
- ((System.ComponentModel.ISupportInitialize)(this.picture)).BeginInit();
- this.SuspendLayout();
- //
- // btnCancel
- //
- this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
- this.btnCancel.Location = new System.Drawing.Point(546, 148);
- this.btnCancel.Name = "btnCancel";
- this.btnCancel.Size = new System.Drawing.Size(75, 23);
- this.btnCancel.TabIndex = 0;
- this.btnCancel.Text = "Cancel";
- this.btnCancel.UseVisualStyleBackColor = true;
- //
- // btnRestore
- //
- this.btnRestore.DialogResult = System.Windows.Forms.DialogResult.OK;
- this.btnRestore.Location = new System.Drawing.Point(423, 148);
- this.btnRestore.Name = "btnRestore";
- this.btnRestore.Size = new System.Drawing.Size(117, 23);
- this.btnRestore.TabIndex = 1;
- this.btnRestore.Text = "Restore";
- this.btnRestore.UseVisualStyleBackColor = true;
- //
- // lblMessage
- //
- this.lblMessage.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
- this.lblMessage.Location = new System.Drawing.Point(167, 9);
- this.lblMessage.Name = "lblMessage";
- this.lblMessage.Size = new System.Drawing.Size(454, 136);
- this.lblMessage.TabIndex = 2;
- this.lblMessage.Text = "Do you want to restore file?";
- this.lblMessage.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- //
- // picture
- //
- this.picture.Location = new System.Drawing.Point(33, 17);
- this.picture.Name = "picture";
- this.picture.Size = new System.Drawing.Size(128, 128);
- this.picture.TabIndex = 3;
- this.picture.TabStop = false;
- //
- // LoadAutoSaveForm
- //
- this.AcceptButton = this.btnRestore;
- this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
- this.CancelButton = this.btnCancel;
- this.ClientSize = new System.Drawing.Size(633, 183);
- this.Controls.Add(this.picture);
- this.Controls.Add(this.lblMessage);
- this.Controls.Add(this.btnRestore);
- this.Controls.Add(this.btnCancel);
- this.Name = "LoadAutoSaveForm";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.Text = "LoadAutoSaveForm";
- ((System.ComponentModel.ISupportInitialize)(this.picture)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.Button btnCancel;
- private System.Windows.Forms.Button btnRestore;
- private System.Windows.Forms.Label lblMessage;
- private System.Windows.Forms.PictureBox picture;
- }
- }
|