過去に作っていたメールソフトの焼き直しをいちからしています。
以前Visual Studio 2005などでは出来たことなのですが、ステータスラベルを2つ作り
名前をlabelA、labelBとして作成し、labelAにはSpringプロパティをtrueにして
labelBはそのままでプログラムを実行したとき、labelBのテキストが表示されない
問題が発生しました。
やりたいことはlabelBの文字をステータスバー上に表示したいのですがどうすれば
良いでしょうか?
制作環境:Visual Studio 2019(Community)
ソースコード(Form1.Designer.cs)
namespace StatusBar { partial class Form1 { /// <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() { this.statusStrip1 = new System.Windows.Forms.StatusStrip(); this.labelA = new System.Windows.Forms.ToolStripStatusLabel(); this.labelB = new System.Windows.Forms.ToolStripStatusLabel(); this.statusStrip1.SuspendLayout(); this.SuspendLayout(); // // statusStrip1 // this.statusStrip1.ImageScalingSize = new System.Drawing.Size(20, 20); this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.labelA, this.labelB}); this.statusStrip1.Location = new System.Drawing.Point(0, 420); this.statusStrip1.Name = "statusStrip1"; this.statusStrip1.Size = new System.Drawing.Size(800, 30); this.statusStrip1.TabIndex = 0; this.statusStrip1.Text = "statusStrip1"; // // labelA // this.labelA.Name = "labelA"; this.labelA.Size = new System.Drawing.Size(729, 24); this.labelA.Spring = true; this.labelA.Text = "ラベルA"; this.labelA.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // labelB // this.labelB.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Left; this.labelB.Name = "labelB"; this.labelB.Size = new System.Drawing.Size(56, 24); this.labelB.Text = "ラベルB"; // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(800, 450); this.Controls.Add(this.statusStrip1); this.Name = "Form1"; this.Text = "Form1"; this.statusStrip1.ResumeLayout(false); this.statusStrip1.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.StatusStrip statusStrip1; private System.Windows.Forms.ToolStripStatusLabel labelA; private System.Windows.Forms.ToolStripStatusLabel labelB; } }
現象が確認できませんでした。
現象が確認できる最小限のDesigner.cs等ソースを記載できませんか?
症状と同じ最小限のForm1.Designer.csの内容を掲載しました。
単純にForm1にStatusStripを配置しStatusLabelを2つ配置し
左側にSpring = trueを設定、右側はBorderSides = Leftを
設定しただけのものとなっています。
これを実行すると右側のテキストが表示されません。
コードは ``` と ``` で囲ってください(``` はバッククォート 3 つ)。インデントされて見やすくなるので。インデントされてないコードはあなたも読む気がしないのでは?
回答1件
あなたの回答
tips
プレビュー