|
Dreamine.UI.Wpf.Controls 1.0.1
Dreamine.UI.Wpf.Controls 사용자 인터페이스 기능과 구성 요소를 제공합니다.
|


정적 Public 멤버 함수 | |
| static void | SetCommandTriggerName (DependencyObject obj, string value) |
| static string | GetCommandTriggerName (DependencyObject obj) |
| static void | SetCommand (DependencyObject obj, ICommand value) |
| static ? ICommand | GetCommand (DependencyObject obj) |
| static void | SetCommandParameter (DependencyObject obj, object value) |
| static ? object | GetCommandParameter (DependencyObject obj) |
정적 Public 속성 | |
| static readonly DependencyProperty | CommandProperty |
| static readonly DependencyProperty | CommandParameterProperty |
| static readonly DependencyProperty | CommandTriggerNameProperty |
정적 Private 멤버 함수 | |
| static | DreamineLabel () |
| static void | OnCommandChanged (DependencyObject d, DependencyPropertyChangedEventArgs e) |
| static void | TryExecuteCommand (DependencyObject d, string eventName, RoutedEventArgs eventArgs) |
정적 Private 속성 | |
| static readonly DependencyProperty | IsHandlersHookedProperty |
전용 스타일과 이벤트 이름 기반 연결 명령을 제공하는 사용자 지정 레이블입니다.
DreamineLabel.cs 파일의 25 번째 라인에서 정의되었습니다.
|
inlinestaticprivate |
기본 스타일 키를 재정의하고 레이블 테마 리소스를 애플리케이션에 병합합니다.
DreamineLabel.cs 파일의 35 번째 라인에서 정의되었습니다.
다음을 참조함 : DreamineLabel().
다음에 의해서 참조됨 : DreamineLabel().


|
inlinestatic |
대상 개체에 설정된 명령을 가져옵니다.
| obj | 값을 읽을 종속성 개체입니다. |
| ArgumentNullException | obj 가 null이면 발생합니다. |
DreamineLabel.cs 파일의 257 번째 라인에서 정의되었습니다.
다음을 참조함 : CommandProperty.
다음에 의해서 참조됨 : TryExecuteCommand().

|
inlinestatic |
대상 개체에 설정된 명령 매개변수를 가져옵니다.
| obj | 값을 읽을 종속성 개체입니다. |
| ArgumentNullException | obj 가 null이면 발생합니다. |
DreamineLabel.cs 파일의 327 번째 라인에서 정의되었습니다.
다음을 참조함 : CommandParameterProperty.
다음에 의해서 참조됨 : TryExecuteCommand().

|
inlinestatic |
대상 개체의 명령 트리거 이벤트 이름 목록을 가져옵니다.
| obj | 값을 읽을 종속성 개체입니다. |
| ArgumentNullException | obj 가 null이면 발생합니다. |
DreamineLabel.cs 파일의 187 번째 라인에서 정의되었습니다.
다음을 참조함 : CommandTriggerNameProperty.
다음에 의해서 참조됨 : TryExecuteCommand().

|
inlinestaticprivate |
명령 속성이 처음 설정될 때 지원되는 입력 이벤트 처리기를 한 번만 연결합니다.
| d | 명령 값이 변경된 종속성 개체입니다. |
| e | 종속성 속성 변경 데이터입니다. |
DreamineLabel.cs 파일의 354 번째 라인에서 정의되었습니다.
다음을 참조함 : IsHandlersHookedProperty, TryExecuteCommand().

|
inlinestatic |
대상 개체에 실행할 명령을 설정합니다.
| obj | 값을 설정할 종속성 개체입니다. |
| value | 실행할 명령입니다. |
| ArgumentNullException | obj 가 null이면 발생합니다. |
DreamineLabel.cs 파일의 222 번째 라인에서 정의되었습니다.
다음을 참조함 : CommandProperty.
|
inlinestatic |
대상 개체에 명령 매개변수를 설정합니다.
| obj | 값을 설정할 종속성 개체입니다. |
| value | 명령에 전달할 값입니다. |
| ArgumentNullException | obj 가 null이면 발생합니다. |
DreamineLabel.cs 파일의 292 번째 라인에서 정의되었습니다.
다음을 참조함 : CommandParameterProperty.
|
inlinestatic |
대상 개체에 명령 트리거 이벤트 이름 목록을 설정합니다.
| obj | 값을 설정할 종속성 개체입니다. |
| value | 쉼표로 구분된 이벤트 이름입니다. |
| ArgumentNullException | obj 가 null이면 발생합니다. |
DreamineLabel.cs 파일의 152 번째 라인에서 정의되었습니다.
다음을 참조함 : CommandTriggerNameProperty.
|
inlinestaticprivate |
이벤트 이름이 구성된 목록에 있으면 명령 실행 가능 여부를 확인하고 실행합니다.
| d | 명령 설정을 보유한 개체입니다. |
| eventName | 발생한 이벤트 이름입니다. |
| eventArgs | 기본 명령 매개변수로 사용할 이벤트 데이터입니다. |
DreamineLabel.cs 파일의 417 번째 라인에서 정의되었습니다.
다음을 참조함 : GetCommand(), GetCommandParameter(), GetCommandTriggerName().
다음에 의해서 참조됨 : OnCommandChanged().


|
static |
연결 명령에 전달할 선택적 매개변수 속성입니다. null이면 이벤트 데이터가 전달됩니다.
DreamineLabel.cs 파일의 83 번째 라인에서 정의되었습니다.
다음에 의해서 참조됨 : GetCommandParameter(), SetCommandParameter().
|
static |
구성한 트리거 이벤트에서 실행할 연결 명령 속성입니다.
DreamineLabel.cs 파일의 68 번째 라인에서 정의되었습니다.
다음에 의해서 참조됨 : GetCommand(), SetCommand().
|
static |
쉼표로 구분된 명령 트리거 이벤트 이름 목록 속성입니다.
DreamineLabel.cs 파일의 98 번째 라인에서 정의되었습니다.
다음에 의해서 참조됨 : GetCommandTriggerName(), SetCommandTriggerName().
|
staticprivate |
내부 이벤트 처리기의 중복 연결을 방지하는 플래그 속성입니다.
DreamineLabel.cs 파일의 113 번째 라인에서 정의되었습니다.
다음에 의해서 참조됨 : OnCommandChanged().