다음을 통해 공유


Command<T> 생성자

정의

오버로드

Command<T>(Action<T>)

명령 클래스의 새 인스턴스를 초기화합니다.

Command<T>(Action<T>, Func<T,Boolean>)

명령 클래스의 새 인스턴스를 초기화합니다.

Command<T>(Action<T>)

명령 클래스의 새 인스턴스를 초기화합니다.

public Command (Action<T> execute);
new Xamarin.Forms.Command<'T> : Action<'T> -> Xamarin.Forms.Command<'T>

매개 변수

execute
System.Action<T>

명령이 실행될 때 실행할 동작입니다.

적용 대상

Command<T>(Action<T>, Func<T,Boolean>)

명령 클래스의 새 인스턴스를 초기화합니다.

public Command (Action<T> execute, Func<T,bool> canExecute);
new Xamarin.Forms.Command<'T> : Action<'T> * Func<'T, bool> -> Xamarin.Forms.Command<'T>

매개 변수

execute
System.Action<T>

명령이 실행될 때 실행할 동작입니다.

canExecute
System.Func<T,System.Boolean>

명령을 실행할 수 있는지 여부를 나타내는 System.Func`2입니다.

적용 대상