main
1namespace MoMoney.Presentation.Winforms.Views
2{
3 partial class UnhandledErrorView
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.groupBox1 = new System.Windows.Forms.GroupBox();
32 this.label1 = new System.Windows.Forms.Label();
33 this.groupBox2 = new System.Windows.Forms.GroupBox();
34 this.ux_message = new System.Windows.Forms.TextBox();
35 this.label2 = new System.Windows.Forms.Label();
36 this.ux_image = new System.Windows.Forms.PictureBox();
37 this.restart_button = new System.Windows.Forms.Button();
38 this.close_button = new System.Windows.Forms.Button();
39 this.groupBox1.SuspendLayout();
40 this.groupBox2.SuspendLayout();
41 ((System.ComponentModel.ISupportInitialize)(this.ux_image)).BeginInit();
42 this.SuspendLayout();
43 //
44 // groupBox1
45 //
46 this.groupBox1.Controls.Add(this.label1);
47 this.groupBox1.Controls.Add(this.groupBox2);
48 this.groupBox1.Controls.Add(this.label2);
49 this.groupBox1.Controls.Add(this.ux_image);
50 this.groupBox1.Controls.Add(this.restart_button);
51 this.groupBox1.Controls.Add(this.close_button);
52 this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
53 this.groupBox1.Location = new System.Drawing.Point(0, 0);
54 this.groupBox1.Name = "groupBox1";
55 this.groupBox1.Size = new System.Drawing.Size(736, 467);
56 this.groupBox1.TabIndex = 0;
57 this.groupBox1.TabStop = false;
58 //
59 // label1
60 //
61 this.label1.AutoSize = true;
62 this.label1.Location = new System.Drawing.Point(188, 50);
63 this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
64 this.label1.Name = "label1";
65 this.label1.Size = new System.Drawing.Size(366, 17);
66 this.label1.TabIndex = 11;
67 this.label1.Text = "I\'m really sorry, but something crashed in the application.";
68 //
69 // groupBox2
70 //
71 this.groupBox2.Controls.Add(this.ux_message);
72 this.groupBox2.Location = new System.Drawing.Point(12, 211);
73 this.groupBox2.Name = "groupBox2";
74 this.groupBox2.Size = new System.Drawing.Size(715, 250);
75 this.groupBox2.TabIndex = 10;
76 this.groupBox2.TabStop = false;
77 this.groupBox2.Text = "The gory details...";
78 //
79 // ux_message
80 //
81 this.ux_message.Dock = System.Windows.Forms.DockStyle.Fill;
82 this.ux_message.Location = new System.Drawing.Point(3, 18);
83 this.ux_message.Multiline = true;
84 this.ux_message.Name = "ux_message";
85 this.ux_message.ReadOnly = true;
86 this.ux_message.Size = new System.Drawing.Size(709, 229);
87 this.ux_message.TabIndex = 0;
88 //
89 // label2
90 //
91 this.label2.AutoSize = true;
92 this.label2.Location = new System.Drawing.Point(188, 67);
93 this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
94 this.label2.Name = "label2";
95 this.label2.Size = new System.Drawing.Size(177, 17);
96 this.label2.TabIndex = 9;
97 this.label2.Text = "What would you like to do?";
98 //
99 // ux_image
100 //
101 this.ux_image.Location = new System.Drawing.Point(9, 13);
102 this.ux_image.Margin = new System.Windows.Forms.Padding(4);
103 this.ux_image.Name = "ux_image";
104 this.ux_image.Size = new System.Drawing.Size(153, 105);
105 this.ux_image.TabIndex = 8;
106 this.ux_image.TabStop = false;
107 //
108 // restart_button
109 //
110 this.restart_button.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
111 this.restart_button.Location = new System.Drawing.Point(373, 126);
112 this.restart_button.Margin = new System.Windows.Forms.Padding(4);
113 this.restart_button.Name = "restart_button";
114 this.restart_button.Size = new System.Drawing.Size(356, 78);
115 this.restart_button.TabIndex = 3;
116 this.restart_button.Text = "I want to &Restart the application";
117 this.restart_button.UseVisualStyleBackColor = true;
118 //
119 // close_button
120 //
121 this.close_button.Location = new System.Drawing.Point(9, 126);
122 this.close_button.Margin = new System.Windows.Forms.Padding(4);
123 this.close_button.Name = "close_button";
124 this.close_button.Size = new System.Drawing.Size(356, 78);
125 this.close_button.TabIndex = 2;
126 this.close_button.Text = "&Ignore and continue";
127 this.close_button.UseVisualStyleBackColor = true;
128 //
129 // UnhandledErrorView
130 //
131 this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
132 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
133 this.CausesValidation = false;
134 this.ClientSize = new System.Drawing.Size(736, 467);
135 this.Controls.Add(this.groupBox1);
136 this.Name = "UnhandledErrorView";
137 this.ShowInTaskbar = false;
138 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
139 this.Text = "UnhandledErrorView";
140 this.groupBox1.ResumeLayout(false);
141 this.groupBox1.PerformLayout();
142 this.groupBox2.ResumeLayout(false);
143 this.groupBox2.PerformLayout();
144 ((System.ComponentModel.ISupportInitialize)(this.ux_image)).EndInit();
145 this.ResumeLayout(false);
146
147 }
148
149 #endregion
150
151 private System.Windows.Forms.GroupBox groupBox1;
152 public System.Windows.Forms.Button close_button;
153 public System.Windows.Forms.Button restart_button;
154 private System.Windows.Forms.Label label2;
155 public System.Windows.Forms.PictureBox ux_image;
156 private System.Windows.Forms.GroupBox groupBox2;
157 private System.Windows.Forms.TextBox ux_message;
158 private System.Windows.Forms.Label label1;
159 }
160}