Ejemplo n.º 1
0
        private void CheckContents(object sender, EventArgs e)
        {
            String old         = UrlTextBox.Text;
            String placeholder = "Type a web address to get started";

            if (String.IsNullOrEmpty(old))
            {
                UrlTextBox.Text = placeholder;
            }
            else if (old == placeholder)
            {
                UrlTextBox.Clear();
            }
        }
Ejemplo n.º 2
0
 private void UrlTextBox_MouseEnter(object sender, MouseEventArgs e)
 {
     UrlTextBox.Clear();
 }