Condition 생성자
정의
오버로드
Condition() |
Condition 클래스의 새 인스턴스를 초기화합니다.Initializes a new instance of the Condition class. |
Condition(BindingBase, Object) |
Condition 클래스의 새 인스턴스를 초기화합니다.Initializes a new instance of the Condition class. |
Condition(DependencyProperty, Object) |
지정된 속성 및 값을 사용하여 Condition 클래스의 새 인스턴스를 초기화합니다.Initializes a new instance of the Condition class with the specified property and value. 이 생성자는 매개 변수 유효성 검사를 수행합니다.This constructor performs parameter validation. |
Condition(DependencyProperty, Object, String) |
지정된 속성, 값 및 소스 개체의 이름을 사용하여 Condition 클래스의 새 인스턴스를 초기화합니다.Initializes a new instance of the Condition class with the specified property, value, and the name of the source object. |
Condition()
Condition(BindingBase, Object)
public:
Condition(System::Windows::Data::BindingBase ^ binding, System::Object ^ conditionValue);
public Condition (System.Windows.Data.BindingBase binding, object conditionValue);
new System.Windows.Condition : System.Windows.Data.BindingBase * obj -> System.Windows.Condition
Public Sub New (binding As BindingBase, conditionValue As Object)
매개 변수
- binding
- BindingBase
조건의 속성을 지정하는 바인딩입니다.The binding that specifies the property of the condition.
- conditionValue
- Object
조건의 값입니다.The value of the condition.
적용 대상
Condition(DependencyProperty, Object)
public:
Condition(System::Windows::DependencyProperty ^ conditionProperty, System::Object ^ conditionValue);
public Condition (System.Windows.DependencyProperty conditionProperty, object conditionValue);
new System.Windows.Condition : System.Windows.DependencyProperty * obj -> System.Windows.Condition
Public Sub New (conditionProperty As DependencyProperty, conditionValue As Object)
매개 변수
- conditionProperty
- DependencyProperty
조건의 속성입니다.The property of the condition.
- conditionValue
- Object
조건의 값입니다.The value of the condition.
적용 대상
Condition(DependencyProperty, Object, String)
public:
Condition(System::Windows::DependencyProperty ^ conditionProperty, System::Object ^ conditionValue, System::String ^ sourceName);
public Condition (System.Windows.DependencyProperty conditionProperty, object conditionValue, string sourceName);
new System.Windows.Condition : System.Windows.DependencyProperty * obj * string -> System.Windows.Condition
Public Sub New (conditionProperty As DependencyProperty, conditionValue As Object, sourceName As String)
매개 변수
- conditionProperty
- DependencyProperty
조건의 속성입니다.The property of the condition.
- conditionValue
- Object
조건의 값입니다.The value of the condition.
- sourceName
- String
conditionProperty
가 있는 개체의 x:Name
입니다.x:Name
of the object with the conditionProperty
.