Beispiel #1
0
 private void SetTagToNothing()
 {
     if (_interfaceControl.Parent.InvokeRequired)
     {
         var s = new SetTagToNothingCB(SetTagToNothing);
         _interfaceControl.Parent.Invoke(s);
     }
     else
     {
         _interfaceControl.Parent.Tag = null;
     }
 }
 private void SetTagToNothing()
 {
     if (this._InterfaceControl.Parent.InvokeRequired)
     {
         SetTagToNothingCB s = new SetTagToNothingCB(SetTagToNothing);
         this._InterfaceControl.Parent.Invoke(s);
     }
     else
     {
         this._InterfaceControl.Parent.Tag = null;
     }
 }
 private void SetTagToNothing()
 {
     if (this._InterfaceControl.Parent.InvokeRequired)
     {
         SetTagToNothingCB s = new SetTagToNothingCB(SetTagToNothing);
         this._InterfaceControl.Parent.Invoke(s);
     }
     else
     {
         this._InterfaceControl.Parent.Tag = null;
     }
 }