main
  1namespace MoMoney.Presentation.Winforms.Views
  2{
  3    public    partial class SaveChangesView
  4    {
  5        /// <summary>
  6        /// Required designer variable.
  7        /// </summary>
  8        private System.ComponentModel.IContainer components = null;
  9
 10        /// <summary>
 11        /// Clean up any resources being used.
 12        /// </summary>
 13        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
 14        protected override void Dispose(bool disposing)
 15        {
 16            if (disposing && (components != null))
 17            {
 18                components.Dispose();
 19            }
 20            base.Dispose(disposing);
 21        }
 22
 23        #region Windows Form Designer generated code
 24
 25        /// <summary>
 26        /// Required method for Designer support - do not modify
 27        /// the contents of this method with the code editor.
 28        /// </summary>
 29        private void InitializeComponent()
 30        {
 31            this.save_button = new System.Windows.Forms.Button();
 32            this.do_not_save_button = new System.Windows.Forms.Button();
 33            this.cancel_button = new System.Windows.Forms.Button();
 34            this.ux_image = new System.Windows.Forms.PictureBox();
 35            this.label1 = new System.Windows.Forms.Label();
 36            this.label2 = new System.Windows.Forms.Label();
 37            this.label3 = new System.Windows.Forms.Label();
 38            ((System.ComponentModel.ISupportInitialize)(this.ux_image)).BeginInit();
 39            this.SuspendLayout();
 40            // 
 41            // ux_save_button
 42            // 
 43            this.save_button.Location = new System.Drawing.Point(12, 100);
 44            this.save_button.Name = "save_button";
 45            this.save_button.Size = new System.Drawing.Size(267, 63);
 46            this.save_button.TabIndex = 0;
 47            this.save_button.Text = "&Save";
 48            this.save_button.UseVisualStyleBackColor = true;
 49            // 
 50            // ux_do_not_save_button
 51            // 
 52            this.do_not_save_button.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
 53            this.do_not_save_button.Location = new System.Drawing.Point(13, 185);
 54            this.do_not_save_button.Name = "do_not_save_button";
 55            this.do_not_save_button.Size = new System.Drawing.Size(267, 63);
 56            this.do_not_save_button.TabIndex = 2;
 57            this.do_not_save_button.Text = "Do&n\'t Save";
 58            this.do_not_save_button.UseVisualStyleBackColor = true;
 59            // 
 60            // ux_cancel_button
 61            // 
 62            this.cancel_button.DialogResult = System.Windows.Forms.DialogResult.Cancel;
 63            this.cancel_button.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
 64            this.cancel_button.Location = new System.Drawing.Point(13, 254);
 65            this.cancel_button.Name = "cancel_button";
 66            this.cancel_button.Size = new System.Drawing.Size(267, 63);
 67            this.cancel_button.TabIndex = 3;
 68            this.cancel_button.Text = "Cancel";
 69            this.cancel_button.UseVisualStyleBackColor = true;
 70            // 
 71            // ux_image
 72            // 
 73            this.ux_image.Location = new System.Drawing.Point(12, 12);
 74            this.ux_image.Name = "ux_image";
 75            this.ux_image.Size = new System.Drawing.Size(115, 85);
 76            this.ux_image.TabIndex = 4;
 77            this.ux_image.TabStop = false;
 78            // 
 79            // label1
 80            // 
 81            this.label1.AutoSize = true;
 82            this.label1.Location = new System.Drawing.Point(136, 42);
 83            this.label1.Name = "label1";
 84            this.label1.Size = new System.Drawing.Size(144, 13);
 85            this.label1.TabIndex = 6;
 86            this.label1.Text = "You have unsaved changes.";
 87            // 
 88            // label2
 89            // 
 90            this.label2.AutoSize = true;
 91            this.label2.Location = new System.Drawing.Point(136, 55);
 92            this.label2.Name = "label2";
 93            this.label2.Size = new System.Drawing.Size(136, 13);
 94            this.label2.TabIndex = 7;
 95            this.label2.Text = "What would you like to do?";
 96            // 
 97            // label3
 98            // 
 99            this.label3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
100            this.label3.Location = new System.Drawing.Point(11, 173);
101            this.label3.Name = "label3";
102            this.label3.Size = new System.Drawing.Size(273, 2);
103            this.label3.TabIndex = 8;
104            this.label3.Text = "                                                                                 " +
105                               "       ";
106            // 
107            // UnsavedChangesView
108            // 
109            this.AcceptButton = this.save_button;
110            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
111            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
112            this.CancelButton = this.cancel_button;
113            this.ClientSize = new System.Drawing.Size(295, 327);
114            this.Controls.Add(this.label3);
115            this.Controls.Add(this.label2);
116            this.Controls.Add(this.label1);
117            this.Controls.Add(this.ux_image);
118            this.Controls.Add(this.cancel_button);
119            this.Controls.Add(this.do_not_save_button);
120            this.Controls.Add(this.save_button);
121            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
122            this.MaximizeBox = false;
123            this.MinimizeBox = false;
124            this.Name = "UnsavedChangesView";
125            this.ShowIcon = false;
126            this.ShowInTaskbar = false;
127            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
128            this.Text = "Unsaved Changes";
129            ((System.ComponentModel.ISupportInitialize)(this.ux_image)).EndInit();
130            this.ResumeLayout(false);
131            this.PerformLayout();
132
133        }
134
135        #endregion
136
137        public System.Windows.Forms.Button save_button;
138        public System.Windows.Forms.Button do_not_save_button;
139        public System.Windows.Forms.Button cancel_button;
140        public System.Windows.Forms.PictureBox ux_image;
141        private System.Windows.Forms.Label label1;
142        private System.Windows.Forms.Label label2;
143        private System.Windows.Forms.Label label3;
144    }
145}