Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
どうすればこのようなことを達成できますか?
ツールストリップドックを左に設定しようとしました
ツールストリップのドッキングなし
ステータスストリップドックをなしに
Form1.Designer.cs (From1 はフォームの名前) デザイナーが生成したファイルに移動します。ストリップがフォームの Controls コレクションに追加されるセクションに移動し、次のように順序を切り替えます。
this.Controls.Add(this.toolStrip1); this.Controls.Add(this.statusStrip1);
このようにして、ステータス トリップは正しい Z オーダーになります (レイアウトに関しても)。