Esempio n. 1
0
        private void HandleOpenTabClick(TabButton sender)
        {
            var tab = GetTabGroup(sender);

            SwitchTab(tab);
        }
Esempio n. 2
0
 // Gets the tab group with the tab button.
 private TabGroup GetTabGroup(TabButton tabButton)
 {
     return(tabs.First(tab => tab.TabButton == tabButton));
 }