Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have 50 buttons in my project as all are linked, when pressed, to a method. And now, when a button has been pressed I want it to go invisible. Since I don't want my code to contain 50 IF statements to check which button that has been pressed:

If(sender == Button1)
{     
    Button1.visible = false;
} 

This code gets very long if I ill have almost the same block of code when only the button name changes 50 times. Is there anyway to this in another way to get a shorter code?

Maybe: If a String variable contains the name of the button?

string buttoncheck = Button1;

And then in the upper code insert buttoncheck instead of Button1 since buttoncheck contains the value/name of Button1?

Thanks!

share|improve this question

8 Answers

up vote 3 down vote accepted

Try

Button button = (Button) sender;
button.Visible = false;
share|improve this answer
2  
+1 Assuming nothing but a button is hooked to the method, this is the simple and straightforward way to do it. – T.J. Crowder Jun 13 '11 at 21:28
Thanks, that worked great :) – laz Jun 13 '11 at 21:39

Try something like

var x = sender as Button;
if(x != null){
    x.Visible = false;
}
share|improve this answer
((Button)sender).Visible = false;
share|improve this answer

In your event, you have a sender.

You can cast your sender to you Button object type.

var button = sender as Button;

if(button != null)
    button.Visible = false;
share|improve this answer

If 50 buttons share same functionality, subscribe their Click event to the same event handler, and do this:

Button button = sender as Button;    
if (button != null)
   button.Visible = false;
share|improve this answer

By casting it to a Button, you can just use the reference provided by sender to set the visibility of the button that fired the event.

if(sender is Button)
{
  ((Button)sender).Visible = false;
}
share|improve this answer
1  
No need for as if you've already checked with is, just cast it and avoid the redundant check. – T.J. Crowder Jun 13 '11 at 21:27
Good point. Fixed! – Dan J Jun 13 '11 at 21:45

Try this:

Button button = sender as Button;
button.Visible = false;
share|improve this answer

Just use the sender.

var button = (Button) sender;
button.Visible = false;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.