C# 클래스 Habanero.Faces.Win.ControlsHelper

Provides useful utilities for windows controls. E.g.
  • SafeGui
  • 파일 보기 프로젝트 열기: Chillisoft/habanero.faces

    공개 메소드들

    메소드 설명
    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