StatusStrip
aに aを追加し、実行時にUserControl
これのサイズを変更したい。UserControl
を追加する方法は次のとおりStatusStrip
です。
StatusStrip sb = new StatusStrip();
sb.BackColor = System.Drawing.SystemColors.ControlDark;
sb.Dock = DockStyle.Bottom;
sb.GripMargin = new Padding(2);
sb.SizingGrip = true;
sb.GripStyle = ToolStripGripStyle.Visible;
sb.LayoutStyle = ToolStripLayoutStyle.HorizontalStackWithOverflow;
this.Controls.Add(sb);
のStatusStrip
下部に が表示されますUserControl
。ただしSizingGrip
、 の右下隅には (小さな三角形)はありませんStatusStrip
。なぜだめですか?