c# Programming Glossary: formclosingeventargs
HowTo Disable WebBrowser 'Click Sound' in your app only http://stackoverflow.com/questions/10456/howto-disable-webbrowser-click-sound-in-your-app-only true private void Form1_FormClosing object sender FormClosingEventArgs e Enable the sound on app exit WebClickSound.Enabled true The..
How to record window position in WinForms application settings http://stackoverflow.com/questions/105932/how-to-record-window-position-in-winforms-application-settings and restore. private void MyForm_FormClosing object sender FormClosingEventArgs e Settings.Default.CustomWindowSettings WindowSettings.Record..
c# App.Config change value http://stackoverflow.com/questions/11149556/c-sharp-app-config-change-value lang Russian private void Main_FormClosing object sender FormClosingEventArgs e System.Configuration.ConfigurationManager.AppSettings.Set..
How to Disable Alt + F4 closing form? http://stackoverflow.com/questions/14943/how-to-disable-alt-f4-closing-form does the job private void Form1_FormClosing object sender FormClosingEventArgs e e.Cancel true Edit In response to pix0rs concern yes you are..
Detect reason for form closing http://stackoverflow.com/questions/1623756/detect-reason-for-form-closing Matveev already mentioned the solution should be the FormClosingEventArgs. But as Dmitriy also said this wouldn't make any difference.. true this.Close void Form1_FormClosing object sender FormClosingEventArgs e switch e.CloseReason case CloseReason.ApplicationExitCall..
How to start WinForm app minimized to tray? http://stackoverflow.com/questions/1730731/how-to-start-winform-app-minimized-to-tray value protected override void OnFormClosing FormClosingEventArgs e if mAllowClose this.Hide e.Cancel true base.OnFormClosing..
How to stop BackgroundWorker on Form's Closing event? http://stackoverflow.com/questions/1731384/how-to-stop-backgroundworker-on-forms-closing-event Close if it is set. protected override void OnFormClosing FormClosingEventArgs e if mCompleted backgroundWorker1.CancelAsync this.Enabled false..
How to refresh datagridview when closing child form? http://stackoverflow.com/questions/2395624/how-to-refresh-datagridview-when-closing-child-form refresh private void frmNew_FormClosing object sender FormClosingEventArgs e frmMain frmm new frmMain frmm.itemCategoryBindingSource.EndEdit..
FileNotFoundException in ApplicationSettingsBase http://stackoverflow.com/questions/3494886/filenotfoundexception-in-applicationsettingsbase InitializeComponent protected override void OnFormClosing FormClosingEventArgs e Properties.Settings.Default.Setting 0 DateTime.Now.ToString..
Draw semi transparent overlay image all over the windows form having some controls http://stackoverflow.com/questions/4503210/draw-semi-transparent-overlay-image-all-over-the-windows-form-having-some-contro protected override void OnFormClosing FormClosingEventArgs e Restore owner this.Owner.LocationChanged Cover_LocationChanged..
C#: How to make a form remember its Bounds and WindowState (Taking dual monitor setups into account) http://stackoverflow.com/questions/495380/c-how-to-make-a-form-remember-its-bounds-and-windowstate-taking-dual-monitor private void persistentFormFormClosing object sender FormClosingEventArgs e Set common things PersistenceHandler.WindowState int WindowState..
How do I display a popup from a WebBrowser in another window I created? http://stackoverflow.com/questions/6470842/how-do-i-display-a-popup-from-a-webbrowser-in-another-window-i-created protected override void OnFormClosing FormClosingEventArgs e nativeBrowser.NewWindow2 nativeBrowser_NewWindow2 base.OnFormClosing..
Determine list of event handlers bound to event http://stackoverflow.com/questions/660480/determine-list-of-event-handlers-bound-to-event FormClosing Foo FormClosing Bar void Foo object sender FormClosingEventArgs e void Bar object sender FormClosingEventArgs e static void.. sender FormClosingEventArgs e void Bar object sender FormClosingEventArgs e static void Main Form form new MyForm EventHandlerList events..
How to intercept the onbeforeunload event in a WebBrowser control? http://stackoverflow.com/questions/8883076/how-to-intercept-the-onbeforeunload-event-in-a-webbrowser-control and prompt the user protected override void OnFormClosing FormClosingEventArgs e var window IHTMLWindow2 webBrowser1.Document.Window.DomWindow.. use it like this protected override void OnFormClosing FormClosingEventArgs e var window IHTMLWindow2 webBrowser1.Document.Window.DomWindow..
|