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 の名前。
例
次の例は、ユーザーが 2 つのオブジェクトのプロパティを等しい値に設定したかどうかを確認するアプリケーションの一部です。 最初の例では、それぞれ異なるソースにバインドされたデータである 2 つのTextBoxコントロールを作成します。最初TextBoxのコントロールのバインドは、その親コントロールとBindingGroup親コントロールから継承DataContextされるためTextBox、その一部BindingGroupです。StackPanel
2番目TextBoxのバインディングは、のとの両方がに設定bindingGroup
されているためName Binding BindingGroupName BindingGroup、の一部BindingGroupです.
<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 、バインディングは、バインディングの BindingGroup ソースと DataContext 、同じオブジェクトを持つ BindingGroup 親要素の場合にのみ属します。
値に設定されている場合 BindingGroupName 、バインディングは次の条件に該当する場合 a BindingGroup に属します。
と Name BindingGroup BindingGroupName 等しい。
バインド BindingGroup のターゲット要素の親要素に属します。
にnull
設定されている場合BindingGroupName、バインディングは BindingGroup.
同じ値にバインドのプロパティをBindingGroupName設定BindingGroupNameすることによって、親要素とは異なるDataContextソースを持つBindingGroupバインディングを含めることができます。 バインドのプロパティを異なる値に設定BindingGroupNameすることで、親要素とBindingGroupName同じソースDataContextを持つBindingGroupバインドを除外できます。