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

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