public static DiscWindows Get() { if (_inst == null) _inst = new DiscWindows(); return _inst; }
public void HidePublic() { if (DiscWindows.Get().discDashboard != null) { DiscWindows.Get().discDashboard.Hide(); } }
public void ShowPublic() { if (DiscWindows.Get().discDashboard != null) { DiscWindows.Get().discDashboard.Show(); } }
public static DiscWindows Get() { if (_inst == null) { _inst = new DiscWindows(); } return(_inst); }
public void ShowOwnWindows() { DiscWindows.Get().mainWnd.Show(); if (DiscWindows.Get().privateDiscBoard != null) { DiscWindows.Get().privateDiscBoard.Show(); } if (DiscWindows.Get().moderDashboard != null) { DiscWindows.Get().moderDashboard.Show(); } if (DiscWindows.Get().htmlBackgroundWnd != null) { DiscWindows.Get().htmlBackgroundWnd.Show(); } }