C# numericUpDownの変化量を設定する
C#で、Incrementを使用して、numericUpDownの変化量を設定するサンプルコードを記述してます。
環境
- OS windows10 pro 64bit
- Microsoft Visual Studio Community 2019 Version 16.7.1
Increment使い方
Incrementに数値を指定することで、numericUpDownの変化量を設定することが可能です。
numericUpDown1.Increment =数値;
サンプルコード
以下は、
「実行」ボタンをクリックすると、numericUpDownの変化量を「3」に設定する
サンプルコードとなります。
using System;
using System.Windows.Forms;
namespace FormTestApp
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
// 変更幅を5に設定
numericUpDown1.Increment = 3;
}
}
}
「3」に設定されたことが確認できます。
-
前の記事
javascript lodashを使って先頭から指定した個数の配列データを取得する 2021.08.23
-
次の記事
SourceTree ローカルブランチのマージを行う 2021.08.23
コメントを書く