mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
dispaly wait cursor when options are loading
This commit is contained in:
@@ -17,14 +17,20 @@ namespace mRemoteNG.UI.Forms
|
||||
|
||||
public frmOptions()
|
||||
{
|
||||
Cursor.Current = Cursors.WaitCursor;
|
||||
Application.DoEvents();
|
||||
InitializeComponent();
|
||||
_pageName = Language.strStartupExit;
|
||||
Cursor.Current = Cursors.Default;
|
||||
}
|
||||
|
||||
public frmOptions(string pn)
|
||||
{
|
||||
Cursor.Current = Cursors.WaitCursor;
|
||||
Application.DoEvents();
|
||||
InitializeComponent();
|
||||
_pageName = pn;
|
||||
Cursor.Current = Cursors.Default;
|
||||
}
|
||||
|
||||
private void frmOptions_Load(object sender, EventArgs e)
|
||||
|
||||
Reference in New Issue
Block a user