C# Класс Habanero.Faces.Win.ControlsHelper

Provides useful utilities for windows controls. E.g.
  • SafeGui
  • Показать файл Открыть проект

    Открытые методы

    Метод Описание
    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.

    Описание методов

    SafeGui() публичный статический Метод

    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.
    Результат void