magic text box
C#
2
Posts
2
Posters
0
Views
1
Watching
-
hi People I want to do this : In the toolStrip i have one button and if i click that button textbox and butoon2 appear in toolStrip .Then if i click button 2 textbox disappear.. thx
nemanja
-
hi People I want to do this : In the toolStrip i have one button and if i click that button textbox and butoon2 appear in toolStrip .Then if i click button 2 textbox disappear.. thx
nemanja
Trick question?
private void toolStripButton1_Click(object sender, EventArgs e)
{
toolStripButton2.Visible = true;
toolStripTextBox1.Visible = true;
}private void toolStripButton2_Click(object sender, EventArgs e)
{
toolStripButton2.Visible = false;
toolStripTextBox1.Visible = false;
}