BindingGroup.Items プロパティ
定義
BindingGroup 内のバインディング オブジェクトが使用するソースを取得します。Gets the sources that are used by the Binding objects in the BindingGroup.
public:
property System::Collections::IList ^ Items { System::Collections::IList ^ get(); };
public System.Collections.IList Items { get; }
member this.Items : System.Collections.IList
Public ReadOnly Property Items As IList
プロパティ値
BindingGroup 内のバインディング オブジェクトが使用するソース。The sources that are used by the Binding objects in the BindingGroup.
例
次の例は、ユーザーが2つのオブジェクトのプロパティを等しい値に設定したかどうかを確認するアプリケーションの一部です。The following examples are part of an application that checks whether the user has set the properties of two objects to equal values. 最初の例で TextBox は、2つのコントロールを作成し、それぞれが異なるソースにデータをバインドします。The first example creates two TextBox controls, each of which are data bound to a different source. 最初ののバインディングは、 TextBox object1
DataContext TextBox コントロールの親要素 () のから、そのソースを取得し StackPanel ます。The binding of the first TextBox gets its source, object1
, from the DataContext of the TextBox control's parent element (the StackPanel). 2番目の方法で TextBox は、バインディングのソースがに設定され object2
ます。On the second TextBox, the source of the binding is set to object2
. また、 Label 検証エラーを表示するを作成します。The example also creates a Label that displays validation errors.
<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 います。The following example shows the ValidationRule that the previous example uses. メソッドでは、 Validate から各ソースオブジェクトを取得し、 BindingGroup オブジェクトのプロパティが等しいかどうかを確認します。In the Validate method, the example gets each source object from the BindingGroup and checks whether the properties of the objects are equal.
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
注釈
ソースとして使用される各オブジェクトは、 Items オブジェクトが複数のバインドのソースとして使用されている場合でも、プロパティに1回追加されます。Each object that is used as a source is added into the Items property once, even if the object is used as the source for multiple bindings. 多くの場合、には項目が1つだけあり Items ます。これは DataContext 、を使用する要素のであるオブジェクトです BindingGroup 。Often, there is just one item in Items, which is the object that is the DataContext of the element that uses the BindingGroup. ただし、は複数のソースを持つことができ BindingGroup ます。It is possible for a BindingGroup to have multiple sources, however. たとえば、バインディングオブジェクトが同じを共有し、 BindingGroupName 異なるソースオブジェクトを使用する場合、ソースとして使用される各オブジェクトはに Items あります。For example, if Binding objects share the same BindingGroupName but use different source objects, each object that is used as a source is in Items.
Itemsバインディングのパスがソースの入れ子になったプロパティに解決される場合は、に複数のオブジェクトを指定することもできます。There can also be multiple objects in Items if the path of a Binding resolves to a nested property of the source. たとえば、 TextBox コントロールのバインディングがの一部であり、 BindingGroup DataContext が Customer
型のプロパティを持つオブジェクトであるとし Address
ます。For example, suppose a TextBox control's binding is a part of a BindingGroup and its DataContext is a Customer
object, which has a property of type Address
. のがプロパティである場合は、 Path Binding Address.ZipCode
Address
がプロパティに追加され Items ます。If the Path of the Binding is the Address.ZipCode
property, the Address
is added to the Items property.