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.
Up arrow icon