Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
class myform : form
{
public myform()
{
thetextbox.Focus += ToggleHighlight;
thetextbox.Blur += ToggleHighlight;
}
public override void Dispose(bool disposing)
{
thetextbox.Focus -= ToggleHighlight;
thetextbox.Blur -= ToggleHighlight;
base.Dispose(disposing);
}
private void ToggleHighlight(object sender, EventArgs e)
{
var control = (textbox)sender;
var currnet = control.BackgroundColor;
control.BackgroundColor = current == Color.Pink ? Color.White : Color.Pink;
}
}