Dynamically set method for tabPage

Posted by phenevo on Stack Overflow See other posts from Stack Overflow or by phenevo
Published on 2010-04-09T06:15:43Z Indexed on 2010/04/09 6:23 UTC
Read the original article Hit count: 523

Filed under:
|

Hi,

I dynamically add TabPage to my TabControl

How to set method Select() for this tabpage

TabPage tpTags = new TabPage();
tabControl1.TabPages.Add(tpTags);
...setting properties...
tpTags.Select() =tpTags.BindData();

<= how do it ?

© Stack Overflow or respective owner

Related posts about winforms

Related posts about c#