0

我正在尝试从另一个组件类的 tabcontrol 访问(获取)选定的选项卡。我想看看每次有人点击不同的选项卡时按下了哪个选项卡。

我有一个组件类,它嵌入到另一个包含 tabcontrol 的类中。

提前致谢

4

2 回答 2

0

If I understand you correctly, add an event handler for the tab control's TabIndexChanged event in your other component class.

于 2013-05-02T14:31:30.417 回答
0

例如:您可以这样使用,也可以使用属性来实现

public class A
{       
    B obj1 = new B();
    private void tabControl1_TabIndexChanged(object sender, EventArgs e)
    {
        obj1.PageChanged(tabControl1.SelectedIndex.ToString());
    }
}


public partial class B 
{       
    public void PageChanged(string Val)
    {
        //put your code 
        // after page chaged what should happen
    }
}
于 2013-05-02T15:58:51.740 回答