Skip to content

Instantly share code, notes, and snippets.

@virtualstaticvoid
Last active August 17, 2018 11:57
Show Gist options
  • Save virtualstaticvoid/105253 to your computer and use it in GitHub Desktop.
Save virtualstaticvoid/105253 to your computer and use it in GitHub Desktop.
Control Invoke Support
/*
* MIT License
* Copyright (c) 2013 Chris Stefano
* virtualstaticvoid@gmail.com
*/
public static class ControlInvokeSupport
{
public delegate void SafeControlInvokeHandler<TControl>(TControl control)
where TControl : Control;
public static void SafeControlInvoke<TControl>(this TControl control, SafeControlInvokeHandler<TControl> action)
where TControl : Control
{
if (control != null && control.InvokeRequired)
{
IAsyncResult asyncResult = control.BeginInvoke(action, new object[] { control });
control.EndInvoke(asyncResult);
}
else
{
action(control);
}
}
public delegate TReturn SafeControlInvokeHandler<TReturn, TControl>(TControl control)
where TControl : Control;
public static TReturn SafeControlInvoke<TReturn, TControl>(this TControl control, SafeControlInvokeHandler<TReturn, TControl> action)
where TControl : Control
{
if (control != null && control.InvokeRequired)
{
IAsyncResult asyncResult = control.BeginInvoke(action, new object[] { control });
return (TReturn)control.EndInvoke(asyncResult);
}
return action(control);
}
public delegate TReturn SafeControlInvokeHandler<TReturn, TControl, TArg>(TControl control, TArg args)
where TControl : Control;
public static TReturn SafeControlInvoke<TReturn, TControl, TArg>(this TControl control, TArg args, SafeControlInvokeHandler<TReturn, TControl, TArg> action)
where TControl : Control
{
if (control != null && control.InvokeRequired)
{
IAsyncResult asyncResult = control.BeginInvoke(action, new object[] { control, args });
return (TReturn)control.EndInvoke(asyncResult);
}
return action(control, args);
}
}
Copyright (c) 2013 Chris Stefano
virtualstaticvoid@gmail.com
MIT License
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@TomSmartBishop
Copy link

Under which license can people use this code..?

@virtualstaticvoid
Copy link
Author

@TomSmartBishop I've updated the Gist. It's MIT.

@TomSmartBishop
Copy link

Great, Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment