OSDN Git Service

PostClass.CreatedAtの型をDateTimeUtcに変更
[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.pictureBoxIcon = new System.Windows.Forms.PictureBox();
43             this.checkBoxAnonymouns = new System.Windows.Forms.CheckBox();
44             this.tableLayoutPanel1.SuspendLayout();
45             ((System.ComponentModel.ISupportInitialize)(this.bindingSource)).BeginInit();
46             ((System.ComponentModel.ISupportInitialize)(this.pictureBoxIcon)).BeginInit();
47             this.SuspendLayout();
48             // 
49             // tableLayoutPanel1
50             // 
51             resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1");
52             this.tableLayoutPanel1.Controls.Add(this.buttonSendByMail, 0, 0);
53             this.tableLayoutPanel1.Controls.Add(this.buttonSendByDM, 1, 0);
54             this.tableLayoutPanel1.Controls.Add(this.buttonNotSend, 2, 0);
55             this.tableLayoutPanel1.Name = "tableLayoutPanel1";
56             // 
57             // buttonSendByMail
58             // 
59             resources.ApplyResources(this.buttonSendByMail, "buttonSendByMail");
60             this.buttonSendByMail.Name = "buttonSendByMail";
61             this.buttonSendByMail.UseVisualStyleBackColor = true;
62             this.buttonSendByMail.Click += new System.EventHandler(this.buttonSendByMail_Click);
63             // 
64             // buttonSendByDM
65             // 
66             this.buttonSendByDM.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this.bindingSource, "CanSendByDM", true));
67             resources.ApplyResources(this.buttonSendByDM, "buttonSendByDM");
68             this.buttonSendByDM.Name = "buttonSendByDM";
69             this.buttonSendByDM.UseVisualStyleBackColor = true;
70             this.buttonSendByDM.Click += new System.EventHandler(this.buttonSendByDM_Click);
71             // 
72             // bindingSource
73             // 
74             this.bindingSource.DataSource = typeof(OpenTween.ErrorReport);
75             // 
76             // buttonNotSend
77             // 
78             this.buttonNotSend.DialogResult = System.Windows.Forms.DialogResult.Cancel;
79             resources.ApplyResources(this.buttonNotSend, "buttonNotSend");
80             this.buttonNotSend.Name = "buttonNotSend";
81             this.buttonNotSend.UseVisualStyleBackColor = true;
82             this.buttonNotSend.Click += new System.EventHandler(this.buttonNotSend_Click);
83             // 
84             // textBoxErrorReport
85             // 
86             this.textBoxErrorReport.AcceptsReturn = true;
87             resources.ApplyResources(this.textBoxErrorReport, "textBoxErrorReport");
88             this.textBoxErrorReport.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bindingSource, "ReportText", true));
89             this.textBoxErrorReport.Name = "textBoxErrorReport";
90             // 
91             // label1
92             // 
93             resources.ApplyResources(this.label1, "label1");
94             this.label1.Name = "label1";
95             // 
96             // label2
97             // 
98             resources.ApplyResources(this.label2, "label2");
99             this.label2.Name = "label2";
100             // 
101             // buttonReset
102             // 
103             resources.ApplyResources(this.buttonReset, "buttonReset");
104             this.buttonReset.Name = "buttonReset";
105             this.buttonReset.UseVisualStyleBackColor = true;
106             this.buttonReset.Click += new System.EventHandler(this.buttonReset_Click);
107             // 
108             // pictureBoxIcon
109             // 
110             resources.ApplyResources(this.pictureBoxIcon, "pictureBoxIcon");
111             this.pictureBoxIcon.Name = "pictureBoxIcon";
112             this.pictureBoxIcon.TabStop = false;
113             // 
114             // checkBoxAnonymouns
115             // 
116             resources.ApplyResources(this.checkBoxAnonymouns, "checkBoxAnonymouns");
117             this.checkBoxAnonymouns.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.bindingSource, "AnonymousReport", true));
118             this.checkBoxAnonymouns.Name = "checkBoxAnonymouns";
119             this.checkBoxAnonymouns.UseVisualStyleBackColor = true;
120             // 
121             // SendErrorReportForm
122             // 
123             this.AcceptButton = this.buttonSendByDM;
124             resources.ApplyResources(this, "$this");
125             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
126             this.CancelButton = this.buttonNotSend;
127             this.Controls.Add(this.pictureBoxIcon);
128             this.Controls.Add(this.buttonReset);
129             this.Controls.Add(this.label2);
130             this.Controls.Add(this.label1);
131             this.Controls.Add(this.textBoxErrorReport);
132             this.Controls.Add(this.tableLayoutPanel1);
133             this.Controls.Add(this.checkBoxAnonymouns);
134             this.Name = "SendErrorReportForm";
135             this.ShowIcon = false;
136             this.Shown += new System.EventHandler(this.SendErrorReportForm_Shown);
137             this.tableLayoutPanel1.ResumeLayout(false);
138             ((System.ComponentModel.ISupportInitialize)(this.bindingSource)).EndInit();
139             ((System.ComponentModel.ISupportInitialize)(this.pictureBoxIcon)).EndInit();
140             this.ResumeLayout(false);
141             this.PerformLayout();
142
143         }
144
145         #endregion
146
147         private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
148         private System.Windows.Forms.Button buttonSendByMail;
149         private System.Windows.Forms.Button buttonSendByDM;
150         private System.Windows.Forms.TextBox textBoxErrorReport;
151         private System.Windows.Forms.Label label1;
152         private System.Windows.Forms.Button buttonNotSend;
153         private System.Windows.Forms.Label label2;
154         private System.Windows.Forms.Button buttonReset;
155         private System.Windows.Forms.BindingSource bindingSource;
156         private System.Windows.Forms.PictureBox pictureBoxIcon;
157         private System.Windows.Forms.CheckBox checkBoxAnonymouns;
158     }
159 }