Beispiel #1
0
 private void ClearLbxNodeKey()
 {
     if (this.InvokeRequired)
     {
         DelegateClearLbxNodeKey inv = new DelegateClearLbxNodeKey(this.ClearLbxNodeKey);
         this.Invoke(inv, new object[] { });
     }
     else
     {
         Cursor.Current = Cursors.WaitCursor;
         this.LbxNodeKey.Items.Clear();
         Cursor.Current = Cursors.Default;
     }
 }
Beispiel #2
0
		private void ClearLbxNodeKey()
		{
			if (this.InvokeRequired)
			{
				DelegateClearLbxNodeKey inv = new DelegateClearLbxNodeKey(this.ClearLbxNodeKey);
				this.Invoke(inv, new object[] { });
			}
			else
			{
				Cursor.Current = Cursors.WaitCursor;
				this.LbxNodeKey.Items.Clear();
				Cursor.Current = Cursors.Default;
			}
		}