-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFormMain.Designer.cs
More file actions
101 lines (93 loc) · 4.45 KB
/
Copy pathFormMain.Designer.cs
File metadata and controls
101 lines (93 loc) · 4.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
namespace FolderLANSync
{
partial class FormMain
{
/// <summary>
/// 必要なデザイナー変数です。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 使用中のリソースをすべてクリーンアップします。
/// </summary>
/// <param name="disposing">マネージ リソースが破棄される場合 true、破棄されない場合は false です。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows フォーム デザイナーで生成されたコード
/// <summary>
/// デザイナー サポートに必要なメソッドです。このメソッドの内容を
/// コード エディターで変更しないでください。
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormMain));
this.txtLog3 = new System.Windows.Forms.TextBox();
this.txtLog1 = new System.Windows.Forms.TextBox();
this.txtLog2 = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// txtLog3
//
this.txtLog3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtLog3.Location = new System.Drawing.Point(11, 134);
this.txtLog3.Multiline = true;
this.txtLog3.Name = "txtLog3";
this.txtLog3.ReadOnly = true;
this.txtLog3.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.txtLog3.Size = new System.Drawing.Size(830, 146);
this.txtLog3.TabIndex = 2;
//
// txtLog1
//
this.txtLog1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtLog1.Location = new System.Drawing.Point(11, 12);
this.txtLog1.Multiline = true;
this.txtLog1.Name = "txtLog1";
this.txtLog1.ReadOnly = true;
this.txtLog1.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.txtLog1.Size = new System.Drawing.Size(830, 116);
this.txtLog1.TabIndex = 0;
//
// txtLog2
//
this.txtLog2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtLog2.Location = new System.Drawing.Point(205, 12);
this.txtLog2.Multiline = true;
this.txtLog2.Name = "txtLog2";
this.txtLog2.ReadOnly = true;
this.txtLog2.Size = new System.Drawing.Size(637, 116);
this.txtLog2.TabIndex = 1;
this.txtLog2.Visible = false;
//
// FormMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(854, 292);
this.Controls.Add(this.txtLog3);
this.Controls.Add(this.txtLog2);
this.Controls.Add(this.txtLog1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.Name = "FormMain";
this.Text = "フォルダ同期プログラム";
this.Load += new System.EventHandler(this.FormMain_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox txtLog3;
private System.Windows.Forms.TextBox txtLog1;
private System.Windows.Forms.TextBox txtLog2;
}
}