visibilidad de componentes c#

1
VISIBILIDAD DE COMPONENTES C# using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace Ocultarcomponentes { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { this.button2.Visible = false; } private void button2_Click(object sender, EventArgs e) { } } }

Upload: diego-castanares-yapur

Post on 06-Dec-2015

2 views

Category:

Documents


1 download

DESCRIPTION

Ejemplo visibilidad de componentes.

TRANSCRIPT

Page 1: Visibilidad de Componentes c#

VISIBILIDAD DE COMPONENTES C# using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace Ocultarcomponentes { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { this.button2.Visible = false; } private void button2_Click(object sender, EventArgs e) { } } }