C# textbox快捷键添加横杠

来源:互联网 发布:淘宝的筒子钱靠谱吗 编辑:程序博客网 时间:2024/05/01 05:42
private void textBoxCinvcode_KeyDown(object sender, KeyEventArgs e)
        {
            if (e.KeyCode == Keys.F12)
            {
                string temp = this.textBoxCinvcode.Text.Trim();
                this.textBoxCinvcode.Text = temp + "-";
                this.textBoxCinvcode.Select(temp.Length + 1, temp.Length + 1);
            }
        }
0 0
原创粉丝点击