AdvancedLauncher.UI.Controls.NewsBlock.ShowTab C# (CSharp) Méthode

ShowTab() public méthode

public ShowTab ( int tab ) : void
tab int
Résultat void
        public void ShowTab(int tab)
        {
            if (tab < 0) {
                return;
            }
            if (tab == 0 && !bwLoadTwitter.IsBusy) {
                bwLoadTwitter.RunWorkerAsync();
            } else if (!bwLoadServerNews.IsBusy) {
                bwLoadServerNews.RunWorkerAsync();
            }
        }