OSDN Git Service

DMを使用してエラーレポートを送信する機能を実装
[opentween/open-tween.git] / OpenTween / SendErrorReportForm.Designer.cs
1 namespace OpenTween
2 {
3     partial class SendErrorReportForm
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.components = new System.ComponentModel.Container();
32             System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SendErrorReportForm));
33             this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
34             this.buttonSendByMail = new System.Windows.Forms.Button();
35             this.buttonSendByDM = new System.Windows.Forms.Button();
36             this.bindingSource = new System.Windows.Forms.BindingSource(this.components);
37             this.buttonNotSend = new System.Windows.Forms.Button();
38             this.textBoxErrorReport = new System.Windows.Forms.TextBox();
39             this.label1 = new System.Windows.Forms.Label();
40             this.label2 = new System.Windows.Forms.Label();
41             this.buttonReset = new System.Windows.Forms.Button();
42             this.tableLayoutPanel1.SuspendLayout();
43             ((System.ComponentModel.ISupportInitialize)(this.bindingSource)).BeginInit();
44             this.SuspendLayout();
45             // 
46             // tableLayoutPanel1
47             // 
48             resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1");
49             this.tableLayoutPanel1.Controls.Add(this.buttonSendByMail, 0, 0);
50             this.tableLayoutPanel1.Controls.Add(this.buttonSendByDM, 1, 0);
51             this.tableLayoutPanel1.Controls.Add(this.buttonNotSend, 2, 0);
52             this.tableLayoutPanel1.Name = "tableLayoutPanel1";
53             // 
54             // buttonSendByMail
55             // 
56             resources.ApplyResources(this.buttonSendByMail, "buttonSendByMail");
57             this.buttonSendByMail.Name = "buttonSendByMail";
58             this.buttonSendByMail.UseVisualStyleBackColor = true;
59             this.buttonSendByMail.Click += new System.EventHandler(this.buttonSendByMail_Click);
60             // 
61             // buttonSendByDM
62             // 
63             this.buttonSendByDM.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this.bindingSource, "CanSendByDM", true));
64             resources.ApplyResources(this.buttonSendByDM, "buttonSendByDM");
65             this.buttonSendByDM.Name = "buttonSendByDM";
66             this.buttonSendByDM.UseVisualStyleBackColor = true;
67             this.buttonSendByDM.Click += new System.EventHandler(this.buttonSendByDM_Click);
68             // 
69             // bindingSource
70             // 
71             this.bindingSource.DataSource = typeof(OpenTween.ErrorReport);
72             // 
73             // buttonNotSend
74             // 
75             this.buttonNotSend.DialogResult = System.Windows.Forms.DialogResult.Cancel;
76             resources.ApplyResources(this.buttonNotSend, "buttonNotSend");
77             this.buttonNotSend.Name = "buttonNotSend";
78             this.buttonNotSend.UseVisualStyleBackColor = true;
79             this.buttonNotSend.Click += new System.EventHandler(this.buttonNotSend_Click);
80             // 
81             // textBoxErrorReport
82             // 
83             this.textBoxErrorReport.AcceptsReturn = true;
84             resources.ApplyResources(this.textBoxErrorReport, "textBoxErrorReport");
85             this.textBoxErrorReport.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bindingSource, "ReportText", true));
86             this.textBoxErrorReport.Name = "textBoxErrorReport";
87             // 
88             // label1
89             // 
90             resources.ApplyResources(this.label1, "label1");
91             this.label1.Name = "label1";
92             // 
93             // label2
94             // 
95             resources.ApplyResources(this.label2, "label2");
96             this.label2.Name = "label2";
97             // 
98             // buttonReset
99             // 
100             resources.ApplyResources(this.buttonReset, "buttonReset");
101             this.buttonReset.Name = "buttonReset";
102             this.buttonReset.UseVisualStyleBackColor = true;
103             this.buttonReset.Click += new System.EventHandler(this.buttonReset_Click);
104             // 
105             // SendErrorReportForm
106             // 
107             this.AcceptButton = this.buttonSendByDM;
108             resources.ApplyResources(this, "$this");
109             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
110             this.CancelButton = this.buttonNotSend;
111             this.Controls.Add(this.buttonReset);
112             this.Controls.Add(this.label2);
113             this.Controls.Add(this.label1);
114             this.Controls.Add(this.textBoxErrorReport);
115             this.Controls.Add(this.tableLayoutPanel1);
116             this.Name = "SendErrorReportForm";
117             this.Shown += new System.EventHandler(this.SendErrorReportForm_Shown);
118             this.tableLayoutPanel1.ResumeLayout(false);
119             ((System.ComponentModel.ISupportInitialize)(this.bindingSource)).EndInit();
120             this.ResumeLayout(false);
121             this.PerformLayout();
122
123         }
124
125         #endregion
126
127         private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
128         private System.Windows.Forms.Button buttonSendByMail;
129         private System.Windows.Forms.Button buttonSendByDM;
130         private System.Windows.Forms.TextBox textBoxErrorReport;
131         private System.Windows.Forms.Label label1;
132         private System.Windows.Forms.Button buttonNotSend;
133         private System.Windows.Forms.Label label2;
134         private System.Windows.Forms.Button buttonReset;
135         private System.Windows.Forms.BindingSource bindingSource;
136     }
137 }