既定ではNumericUpDownのスピンボタンは右側に配置されています。
スピンボタンを左側に配置する場合はUpDownAlignプロパティにLeftRightAlignment.Leftを設定します。
下記はスピンボタンを左側に配置する例です。
VBの例
'スピンボタンの配置位置を左側にする NumericUpDown1.UpDownAlign = LeftRightAlignment.Left
C#の例
// スピンボタンの配置位置を左側にする numericUpDown1.UpDownAlign = LeftRightAlignment.Left;
Please follow and like us:
コメント