C# Class Habanero.Faces.Win.ControlsHelper

Provides useful utilities for windows controls. E.g.
  • SafeGui
  • Afficher le fichier Open project: Chillisoft/habanero.faces

    Méthodes publiques

    Méthode Description
    SafeGui ( Control control, MethodInvoker invoker ) : void

    Executes the provided delegate in the specified control's thread. Use this method to avoid problems with cross thread calls.

    Method Details

    SafeGui() public static méthode

    Executes the provided delegate in the specified control's thread. Use this method to avoid problems with cross thread calls.
    public static SafeGui ( Control control, MethodInvoker invoker ) : void
    control System.Windows.Forms.Control The control running on the thread to be used.
    invoker MethodInvoker The delegate to execute on the control's thread.
    Résultat void