Exemplo n.º 1
0
        private void TxtProductId_GotFocus(object sender, EventArgs e)
        {
            SuperText text = sender as SuperText;

            text.BackColor = Color.Cyan;
            text.SelectAll();
        }
Exemplo n.º 2
0
        //当获取焦点时
        private void TxtVip_GotFocus(object sender, EventArgs e)
        {
            SuperText txt = sender as SuperText;

            txt.BackColor = Color.Cyan;
            txt.SelectAll();//选中所有文本
        }
Exemplo n.º 3
0
        private void TxtAdmName_GotFocus(object sender, EventArgs e)
        {
            SuperText text = sender as SuperText;

            text.SelectAll();
        }
Exemplo n.º 4
0
        private void TxtProductId_GotFocus(object sender, EventArgs e)
        {
            SuperText text = sender as SuperText;

            text.SelectAll();//选中所有文本
        }