C#数字键盘
功能展示
调用使用方法
//实例化数字键盘
DigitalKeyboardForm keyboardForm = new DigitalKeyboardForm();
//设置允许输入最小值
keyboardForm.ExMinValue = 10;
//设置允许输入最大值
keyboardForm.ExMaxValue = 500;
//设置默认值
keyboardForm.ExNowValue = int.Parse(this.lbNowValue.Text);
//显示键盘界面
keyboardForm.ShowDialog();
//确定使用键盘结果
if (keyboardForm.ExResault)
{
//将界面显示到界面
this.lbNowValue.Text = keyboardForm.ExNowValue.ToString();
}
.
├── App
│ ├── App
│ │ ├── App.csproj
│ │ ├── DigitalKeyboardForm.cs
│ │ ├── DigitalKeyboardForm.designer.cs
│ │ ├── DigitalKeyboardForm.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── TestForm.Designer.cs
│ │ ├── TestForm.cs
│ │ ├── TestForm.resx
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── App.exe
│ │ │ │ └── App_20190727_201941.pdb
│ │ │ └── Release
│ │ └── obj
│ │ └── Debug
│ │ ├── App.DigitalKeyboardForm.resources
│ │ ├── App.Properties.Resources.resources
│ │ ├── App.TestForm.resources
│ │ ├── App.csproj.CoreCompileInputs.cache
│ │ ├── App.csproj.FileListAbsolute.txt
│ │ ├── App.csproj.GenerateResource.cache
│ │ ├── App.csprojAssemblyReference.cache
│ │ ├── App.exe
│ │ ├── App.pdb
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ └── TempPE
│ ├── App.sln
│ └── 键盘界面.png
└── 找例子网_App.zip
9 directories, 29 files
评论