[9627] | 1 | namespace HeuristicLab.DataImporter.DataProcessor {
|
---|
| 2 | partial class SaveDialog {
|
---|
| 3 | /// <summary>
|
---|
| 4 | /// Required designer variable.
|
---|
| 5 | /// </summary>
|
---|
| 6 | private System.ComponentModel.IContainer components = null;
|
---|
| 7 |
|
---|
| 8 | /// <summary>
|
---|
| 9 | /// Clean up any resources being used.
|
---|
| 10 | /// </summary>
|
---|
| 11 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
| 12 | protected override void Dispose(bool disposing) {
|
---|
| 13 | if (disposing && (components != null)) {
|
---|
| 14 | components.Dispose();
|
---|
| 15 | }
|
---|
| 16 | base.Dispose(disposing);
|
---|
| 17 | }
|
---|
| 18 |
|
---|
| 19 | #region Windows Form Designer generated code
|
---|
| 20 |
|
---|
| 21 | /// <summary>
|
---|
| 22 | /// Required method for Designer support - do not modify
|
---|
| 23 | /// the contents of this method with the code editor.
|
---|
| 24 | /// </summary>
|
---|
| 25 | private void InitializeComponent() {
|
---|
| 26 | this.label1 = new System.Windows.Forms.Label();
|
---|
| 27 | this.btnSave = new System.Windows.Forms.Button();
|
---|
| 28 | this.btnCancel = new System.Windows.Forms.Button();
|
---|
| 29 | this.btnNoSave = new System.Windows.Forms.Button();
|
---|
| 30 | this.SuspendLayout();
|
---|
| 31 | //
|
---|
| 32 | // label1
|
---|
| 33 | //
|
---|
| 34 | this.label1.Image = global::HeuristicLab.DataImporter.DataProcessor.Properties.Resources.VS2008ImageLibrary_Actions_Warning;
|
---|
| 35 | this.label1.ImageAlign = System.Drawing.ContentAlignment.TopLeft;
|
---|
| 36 | this.label1.Location = new System.Drawing.Point(6, 11);
|
---|
| 37 | this.label1.Name = "label1";
|
---|
| 38 | this.label1.Size = new System.Drawing.Size(237, 19);
|
---|
| 39 | this.label1.TabIndex = 0;
|
---|
| 40 | this.label1.Text = " Do you want to save the made changes?";
|
---|
| 41 | //
|
---|
| 42 | // btnSave
|
---|
| 43 | //
|
---|
| 44 | this.btnSave.DialogResult = System.Windows.Forms.DialogResult.Yes;
|
---|
| 45 | this.btnSave.Location = new System.Drawing.Point(6, 39);
|
---|
| 46 | this.btnSave.Name = "btnSave";
|
---|
| 47 | this.btnSave.Size = new System.Drawing.Size(75, 23);
|
---|
| 48 | this.btnSave.TabIndex = 1;
|
---|
| 49 | this.btnSave.Text = "&Save";
|
---|
| 50 | this.btnSave.UseVisualStyleBackColor = true;
|
---|
| 51 | this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
|
---|
| 52 | //
|
---|
| 53 | // btnCancel
|
---|
| 54 | //
|
---|
| 55 | this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
---|
| 56 | this.btnCancel.Location = new System.Drawing.Point(168, 39);
|
---|
| 57 | this.btnCancel.Name = "btnCancel";
|
---|
| 58 | this.btnCancel.Size = new System.Drawing.Size(75, 23);
|
---|
[9640] | 59 | this.btnCancel.TabIndex = 3;
|
---|
[9627] | 60 | this.btnCancel.Text = "Cancel";
|
---|
| 61 | this.btnCancel.UseVisualStyleBackColor = true;
|
---|
| 62 | this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
|
---|
| 63 | //
|
---|
| 64 | // btnNoSave
|
---|
| 65 | //
|
---|
| 66 | this.btnNoSave.DialogResult = System.Windows.Forms.DialogResult.No;
|
---|
| 67 | this.btnNoSave.Location = new System.Drawing.Point(87, 39);
|
---|
| 68 | this.btnNoSave.Name = "btnNoSave";
|
---|
| 69 | this.btnNoSave.Size = new System.Drawing.Size(75, 23);
|
---|
[9640] | 70 | this.btnNoSave.TabIndex = 2;
|
---|
[9627] | 71 | this.btnNoSave.Text = "&Don\'t Save";
|
---|
| 72 | this.btnNoSave.UseVisualStyleBackColor = true;
|
---|
| 73 | this.btnNoSave.Click += new System.EventHandler(this.btnNoSave_Click);
|
---|
| 74 | //
|
---|
| 75 | // SaveDialog
|
---|
| 76 | //
|
---|
| 77 | this.AcceptButton = this.btnSave;
|
---|
| 78 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 79 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 80 | this.CancelButton = this.btnCancel;
|
---|
| 81 | this.ClientSize = new System.Drawing.Size(250, 69);
|
---|
| 82 | this.Controls.Add(this.btnNoSave);
|
---|
| 83 | this.Controls.Add(this.btnCancel);
|
---|
| 84 | this.Controls.Add(this.btnSave);
|
---|
| 85 | this.Controls.Add(this.label1);
|
---|
| 86 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
---|
| 87 | this.MaximizeBox = false;
|
---|
| 88 | this.MinimizeBox = false;
|
---|
| 89 | this.Name = "SaveDialog";
|
---|
| 90 | this.ShowInTaskbar = false;
|
---|
| 91 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
---|
| 92 | this.Text = "DataImporter";
|
---|
| 93 | this.ResumeLayout(false);
|
---|
| 94 |
|
---|
| 95 | }
|
---|
| 96 |
|
---|
| 97 | #endregion
|
---|
| 98 |
|
---|
| 99 | private System.Windows.Forms.Label label1;
|
---|
| 100 | private System.Windows.Forms.Button btnSave;
|
---|
| 101 | private System.Windows.Forms.Button btnCancel;
|
---|
| 102 | private System.Windows.Forms.Button btnNoSave;
|
---|
| 103 | }
|
---|
| 104 | } |
---|