TabControl's SelectionChanged event issue

∥☆過路亽.° 提交于 2019-12-05 21:50:21

I think I need to take a rest, since my problem is really silly:

Turns out that instead of TabControl I should have used TabItem since it is the control I am interesting in.

So, my code has to be as below:

 void mainTabControl_SelectionChanged(object sender, SelectionChangedEventArgs e)
    {
        if (e.Source is TabItem)
        {       
            if (this.IsLoaded)
            {
                //do work when tab is changed
            }
        }
    }
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!