BindingGroup.Items Eigenschap

Definitie

Hiermee haalt u de bronnen op die worden gebruikt door de bindingsobjecten in de 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

Waarde van eigenschap

De bronnen die worden gebruikt door de bindingsobjecten in de BindingGroup.

Voorbeelden

De volgende voorbeelden maken deel uit van een toepassing die controleert of de gebruiker de eigenschappen van twee objecten heeft ingesteld op gelijke waarden. In het eerste voorbeeld worden twee TextBox besturingselementen gemaakt, die elk gegevens zijn gebonden aan een andere bron. De binding van de eerste TextBox krijgt de bron, object1van het DataContext bovenliggende element van het TextBox besturingselement (het StackPanel). Op de tweede TextBoxis de bron van de binding ingesteld op object2. In het voorbeeld wordt ook een Label validatiefout weergegeven.

<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" />

In het volgende voorbeeld ziet u het ValidationRule voorbeeld dat in het vorige voorbeeld wordt gebruikt. In de Validate methode wordt elk bronobject opgehaald uit het BindingGroup voorbeeld en wordt gecontroleerd of de eigenschappen van de objecten gelijk zijn.

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

Opmerkingen

Elk object dat als bron wordt gebruikt, wordt eenmaal aan de Items eigenschap toegevoegd, zelfs als het object wordt gebruikt als de bron voor meerdere bindingen. Vaak is er slechts één item, Itemsdat het object is dat het DataContext is van het element dat gebruikmaakt van het BindingGroup. Het is echter mogelijk dat een BindingGroup meerdere bronnen heeft. Als bindingsobjecten bijvoorbeeld hetzelfde BindingGroupName delen, maar verschillende bronobjecten gebruiken, bevindt elk object dat wordt gebruikt als bron Items.

Er kunnen ook meerdere objecten Items zijn als het pad van een binding wordt omgezet in een geneste eigenschap van de bron. Stel dat de binding van een TextBox besturingselement deel uitmaakt van een BindingGroup en dat DataContext het een Customer object is dat een eigenschap van het type Addressheeft. Als de eigenschap de PathBindingAddress.ZipCode eigenschap is, wordt deze Address toegevoegd aan de Items eigenschap.

Van toepassing op