BindingBase.BindingGroupName 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
이 바인딩이 속한 이름을 BindingGroup 가져오거나 설정합니다.
public:
property System::String ^ BindingGroupName { System::String ^ get(); void set(System::String ^ value); };
public string BindingGroupName { get; set; }
member this.BindingGroupName : string with get, set
Public Property BindingGroupName As String
속성 값
이 바인딩이 BindingGroup 속한 이름입니다.
예제
다음 예제는 사용자가 두 개체의 속성을 같은 값으로 설정했는지 여부를 확인하는 애플리케이션의 일부입니다. 첫 번째 예제에서는 각각 다른 원본에 바인딩된 데이터인 두 개의 TextBox 컨트롤을 만듭니다. 첫 번째 TextBox 바인딩은 부모로부터 상속받 DataContextBindingGroup 기 때문에 TextBox 해당 컨트롤의 BindingGroup 일부입니다.StackPanel
두 번째 TextBox 바인딩은 둘 다의 BindingGroup 바인딩과 BindingGroupName 두 바인딩이 모두 로 bindingGroup설정되기 때문에 NameBindingGroup 해당 바인딩의 Binding 일부입니다.
<StackPanel Name="sp1"
Margin="5"
DataContext="{Binding Source={StaticResource object1}}"
Validation.ValidationAdornerSite="{Binding ElementName=label1}"
Orientation="Horizontal"
HorizontalAlignment="Center">
<StackPanel.BindingGroup>
<BindingGroup Name="bindingGroup">
<BindingGroup.ValidationRules>
<src:BindingGroupValidationRule ValidatesOnTargetUpdated="True" />
</BindingGroup.ValidationRules>
</BindingGroup>
</StackPanel.BindingGroup>
<TextBlock Text="First string" />
<TextBox Width="150"
Text="{Binding Path=PropertyA}" />
<TextBlock Text="Second string" />
<TextBox Width="150"
Text="{Binding Source={StaticResource object2},
Path=PropertyB, BindingGroupName=bindingGroup,
TargetNullValue=please enter a string}" />
</StackPanel>
<Label Name="label1"
Content="{Binding ElementName=sp1, Path=(Validation.Errors)[0].ErrorContent}"
Margin="5"
Foreground="Red"
HorizontalAlignment="Center" />
다음 예제에서는 이전 예제에서 ValidationRule 사용하는 것을 보여 주는 예제입니다. Validate 이 메서드에서 예제에서는 각 원본 개체를 BindingGroup 가져오고 개체의 속성이 같은지 여부를 확인합니다.
public class Type1
{
public string PropertyA { get; set; }
public Type1()
{
PropertyA = "Default Value";
}
}
public class Type2
{
public string PropertyB { get; set; }
public Type2()
{
}
}
public class BindingGroupValidationRule : ValidationRule
{
public override ValidationResult Validate(object value, System.Globalization.CultureInfo cultureInfo)
{
BindingGroup bg = value as BindingGroup;
Type1 object1 = null;
Type2 object2 = null;
foreach (object item in bg.Items)
{
if (item is Type1)
{
object1 = item as Type1;
}
if (item is Type2)
{
object2 = item as Type2;
}
}
if (object1 == null || object2 == null)
{
return new ValidationResult(false, "BindingGroup did not find source object.");
}
string string1 = bg.GetValue(object1, "PropertyA") as string;
string string2 = bg.GetValue(object2, "PropertyB") as string;
if (string1 != string2)
{
return new ValidationResult(false, "The two strings must be identical.");
}
return ValidationResult.ValidResult;
}
}
Public Class Type1
Public Property PropertyA() As String
Public Sub New()
PropertyA = "Default Value"
End Sub
End Class
Public Class Type2
Public Property PropertyB() As String
Public Sub New()
End Sub
End Class
Public Class BindingGroupValidationRule
Inherits ValidationRule
Public Overrides Function Validate(ByVal value As Object, ByVal cultureInfo As System.Globalization.CultureInfo) As ValidationResult
Dim bg As BindingGroup = TryCast(value, BindingGroup)
Dim object1 As Type1 = Nothing
Dim object2 As Type2 = Nothing
For Each item As Object In bg.Items
If TypeOf item Is Type1 Then
object1 = TryCast(item, Type1)
End If
If TypeOf item Is Type2 Then
object2 = TryCast(item, Type2)
End If
Next item
If object1 Is Nothing OrElse object2 Is Nothing Then
Return New ValidationResult(False, "BindingGroup did not find source object.")
End If
Dim string1 As String = TryCast(bg.GetValue(object1, "PropertyA"), String)
Dim string2 As String = TryCast(bg.GetValue(object2, "PropertyB"), String)
If string1 <> string2 Then
Return New ValidationResult(False, "The two strings must be identical.")
End If
Return ValidationResult.ValidResult
End Function
End Class
설명
설정되지 않은 경우 BindingGroupName 바인딩의 원본과 DataContext 해당 개체가 있는 부모 요소의 원본이 동일한 경우에만 바인딩이 BindingGroup 속 BindingGroup 합니다.
값으로 설정된 경우 BindingGroupName 바인딩은 다음 조건이 true인 경우 a BindingGroup 에 속합니다.
Name 같음 BindingGroupBindingGroupName 의 값입니다.
바인딩 BindingGroup 대상 요소의 부모 요소에 속합니다.
로 설정된 null경우 BindingGroupName 바인딩은 .의 BindingGroup일부가 되지 않습니다.
바인딩의 설정 Name 및 동일한 값에 대한 바인딩의 속성을 가진 BindingGroup 부모 요소와 BindingGroupBindingGroupName 다른 DataContext 소스가 있는 바인딩을 포함할 수 있습니다. 바인딩의 설정 Name 및 다른 값에 대한 속성이 있는 BindingGroup 부모 요소와 BindingGroupBindingGroupName 동일한 원본 DataContext 이 있는 바인딩을 제외할 수 있습니다.