public SettingsForm() { // // The InitializeComponent() call is required for Windows Forms designer support. // InitializeComponent(); CancelButton = buttonCancel; AcceptButton = buttonOK; historyButton.Enabled = ImgurUtils.IsHistoryLoadingNeeded(); }
public static void ShowHistory() { lock (Lock) { if (ImgurUtils.IsHistoryLoadingNeeded()) { // Run upload in the background new PleaseWaitForm().ShowAndWait("Imgur " + Language.GetString("imgur", LangKey.history), Language.GetString("imgur", LangKey.communication_wait), ImgurUtils.LoadHistory ); } // Make sure the history is loaded, will be done only once if (_instance == null) { _instance = new ImgurHistory(); } if (!_instance.Visible) { _instance.Show(); } _instance.Redraw(); } }