예제 #1
0
        private void OnLostFocus(object sender, EventArgs e)
        {
            FETextBox box = (FETextBox)sender;

            if (String.IsNullOrWhiteSpace(box.Text))
            {
                box.ForeColor = SystemColors.GrayText;
                box.Text      = box.Placeholder;
            }
        }
예제 #2
0
        private void OnGotFocus(object sender, EventArgs e)
        {
            FETextBox box = (FETextBox)sender;

            if (box.ForeColor == SystemColors.GrayText)
            {
                box.ForeColor = SystemColors.WindowText;
                box.Text      = "";
            }
        }