質問編集履歴
2
ソースコードをバッククオートで囲んで見やすくした。
test
CHANGED
File without changes
|
test
CHANGED
@@ -23,6 +23,8 @@
|
|
23
23
|
|
24
24
|
|
25
25
|
ソースコード(Form1.Designer.cs)
|
26
|
+
|
27
|
+
```
|
26
28
|
|
27
29
|
namespace StatusBar
|
28
30
|
|
@@ -193,3 +195,5 @@
|
|
193
195
|
}
|
194
196
|
|
195
197
|
}
|
198
|
+
|
199
|
+
```
|
1
サンプルソースコード(デザイン)を追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,4 +1,8 @@
|
|
1
|
+
過去に作っていたメールソフトの焼き直しをいちからしています。
|
2
|
+
|
3
|
+
|
4
|
+
|
1
|
-
以前VisualStudio2005などでは出来たことなのですが、ステータスラベルを2つ作り
|
5
|
+
以前Visual Studio 2005などでは出来たことなのですが、ステータスラベルを2つ作り
|
2
6
|
|
3
7
|
名前をlabelA、labelBとして作成し、labelAにはSpringプロパティをtrueにして
|
4
8
|
|
@@ -15,3 +19,177 @@
|
|
15
19
|
|
16
20
|
|
17
21
|
制作環境:Visual Studio 2019(Community)
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
ソースコード(Form1.Designer.cs)
|
26
|
+
|
27
|
+
namespace StatusBar
|
28
|
+
|
29
|
+
{
|
30
|
+
|
31
|
+
partial class Form1
|
32
|
+
|
33
|
+
{
|
34
|
+
|
35
|
+
/// <summary>
|
36
|
+
|
37
|
+
/// 必要なデザイナー変数です。
|
38
|
+
|
39
|
+
/// </summary>
|
40
|
+
|
41
|
+
private System.ComponentModel.IContainer components = null;
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
/// <summary>
|
46
|
+
|
47
|
+
/// 使用中のリソースをすべてクリーンアップします。
|
48
|
+
|
49
|
+
/// </summary>
|
50
|
+
|
51
|
+
/// <param name="disposing">マネージド リソースを破棄する場合は true を指定し、その他の場合は false を指定します。</param>
|
52
|
+
|
53
|
+
protected override void Dispose(bool disposing)
|
54
|
+
|
55
|
+
{
|
56
|
+
|
57
|
+
if (disposing && (components != null))
|
58
|
+
|
59
|
+
{
|
60
|
+
|
61
|
+
components.Dispose();
|
62
|
+
|
63
|
+
}
|
64
|
+
|
65
|
+
base.Dispose(disposing);
|
66
|
+
|
67
|
+
}
|
68
|
+
|
69
|
+
|
70
|
+
|
71
|
+
#region Windows フォーム デザイナーで生成されたコード
|
72
|
+
|
73
|
+
|
74
|
+
|
75
|
+
/// <summary>
|
76
|
+
|
77
|
+
/// デザイナー サポートに必要なメソッドです。このメソッドの内容を
|
78
|
+
|
79
|
+
/// コード エディターで変更しないでください。
|
80
|
+
|
81
|
+
/// </summary>
|
82
|
+
|
83
|
+
private void InitializeComponent()
|
84
|
+
|
85
|
+
{
|
86
|
+
|
87
|
+
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
|
88
|
+
|
89
|
+
this.labelA = new System.Windows.Forms.ToolStripStatusLabel();
|
90
|
+
|
91
|
+
this.labelB = new System.Windows.Forms.ToolStripStatusLabel();
|
92
|
+
|
93
|
+
this.statusStrip1.SuspendLayout();
|
94
|
+
|
95
|
+
this.SuspendLayout();
|
96
|
+
|
97
|
+
//
|
98
|
+
|
99
|
+
// statusStrip1
|
100
|
+
|
101
|
+
//
|
102
|
+
|
103
|
+
this.statusStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
|
104
|
+
|
105
|
+
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
106
|
+
|
107
|
+
this.labelA,
|
108
|
+
|
109
|
+
this.labelB});
|
110
|
+
|
111
|
+
this.statusStrip1.Location = new System.Drawing.Point(0, 420);
|
112
|
+
|
113
|
+
this.statusStrip1.Name = "statusStrip1";
|
114
|
+
|
115
|
+
this.statusStrip1.Size = new System.Drawing.Size(800, 30);
|
116
|
+
|
117
|
+
this.statusStrip1.TabIndex = 0;
|
118
|
+
|
119
|
+
this.statusStrip1.Text = "statusStrip1";
|
120
|
+
|
121
|
+
//
|
122
|
+
|
123
|
+
// labelA
|
124
|
+
|
125
|
+
//
|
126
|
+
|
127
|
+
this.labelA.Name = "labelA";
|
128
|
+
|
129
|
+
this.labelA.Size = new System.Drawing.Size(729, 24);
|
130
|
+
|
131
|
+
this.labelA.Spring = true;
|
132
|
+
|
133
|
+
this.labelA.Text = "ラベルA";
|
134
|
+
|
135
|
+
this.labelA.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
136
|
+
|
137
|
+
//
|
138
|
+
|
139
|
+
// labelB
|
140
|
+
|
141
|
+
//
|
142
|
+
|
143
|
+
this.labelB.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Left;
|
144
|
+
|
145
|
+
this.labelB.Name = "labelB";
|
146
|
+
|
147
|
+
this.labelB.Size = new System.Drawing.Size(56, 24);
|
148
|
+
|
149
|
+
this.labelB.Text = "ラベルB";
|
150
|
+
|
151
|
+
//
|
152
|
+
|
153
|
+
// Form1
|
154
|
+
|
155
|
+
//
|
156
|
+
|
157
|
+
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
|
158
|
+
|
159
|
+
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
160
|
+
|
161
|
+
this.ClientSize = new System.Drawing.Size(800, 450);
|
162
|
+
|
163
|
+
this.Controls.Add(this.statusStrip1);
|
164
|
+
|
165
|
+
this.Name = "Form1";
|
166
|
+
|
167
|
+
this.Text = "Form1";
|
168
|
+
|
169
|
+
this.statusStrip1.ResumeLayout(false);
|
170
|
+
|
171
|
+
this.statusStrip1.PerformLayout();
|
172
|
+
|
173
|
+
this.ResumeLayout(false);
|
174
|
+
|
175
|
+
this.PerformLayout();
|
176
|
+
|
177
|
+
|
178
|
+
|
179
|
+
}
|
180
|
+
|
181
|
+
|
182
|
+
|
183
|
+
#endregion
|
184
|
+
|
185
|
+
|
186
|
+
|
187
|
+
private System.Windows.Forms.StatusStrip statusStrip1;
|
188
|
+
|
189
|
+
private System.Windows.Forms.ToolStripStatusLabel labelA;
|
190
|
+
|
191
|
+
private System.Windows.Forms.ToolStripStatusLabel labelB;
|
192
|
+
|
193
|
+
}
|
194
|
+
|
195
|
+
}
|