hello guys how r u all ?
my question is that, what is the functionality of visiblechanged event in windows form in c# kindly explain ?
reply soon
Thanks.
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
VulpesPosted Feb 28, 2012, 8:55 AM
So, if you have a VisibleChanged eventhandler for a label (label1 say) then the event will fire and the eventhandler will be called when this line is executed:
label1.Visible = false;
and again when this line is executed:
label1.Visible = true;