We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

TabBarSplitterControl

Hi, I have a TabBarSplitterControl with several TabBarPages containing GridControls. I need to perform some icon manipulation in the mainmenu when someone clicks on the tabs. So I implemented the TabBarPage click event to perform this handling but somehow it doesn''t get fired. Why? How should I do to this to get it working? Best Regards Tommy

2 Replies

AD Administrator Syncfusion Team August 24, 2004 01:48 PM UTC

Try the this.tabBarSplitterControl1.Bar.SelectedIndexChanged event instead. using Syncfusion.Windows.Forms; //formload this.tabBarSplitterControl1.Bar.SelectedIndexChanged += new SelectedIndexEventHandler(bar_SelectedIndexChanged); //the handler private void bar_SelectedIndexChanged(object sender, SelectedIndexEventArgs e) { Console.WriteLine("IndexChanged " + e.Index.ToString()); }


TN Tommy Norman August 25, 2004 05:19 AM UTC

Thanks Clay It worked just fine! Best Regards Tommy

Loader.
Live Chat Icon For mobile
Up arrow icon