Skip to content

Instantly share code, notes, and snippets.

@jomasero
Created June 20, 2013 15:50
Show Gist options
  • Select an option

  • Save jomasero/5823992 to your computer and use it in GitHub Desktop.

Select an option

Save jomasero/5823992 to your computer and use it in GitHub Desktop.
Tooltips para componentes C#
private void modificarComponentes()
{
ToolTip tTBotonesEdicion = new ToolTip();
tTBotonesEdicion.AutoPopDelay = 5000;
tTBotonesEdicion.InitialDelay = 1000;
tTBotonesEdicion.ReshowDelay = 500;
tTBotonesEdicion.ShowAlways = true;
tTBotonesEdicion.SetToolTip(this.botonAgregar, "Agregar consumible");
tTBotonesEdicion.SetToolTip(this.botonEditar, "Editar consumible");
tTBotonesEdicion.SetToolTip(this.botonEliminar, "Eliminar consumible");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment