I have a DataGrid with some columns defined. The rows are bound to an ObservableCollection. Next to the Grid is a button which should be visible or not, depending on the number of rows. It should be visible, when there are 2 (or more) rows. The idea is to use DataGrid.Rows.Count or DataGrid.Items.Count.
The property "DataGrid.Rows" or "DataGrid.Items" are not known by the compiler. Do you know another way ? I like to have it in Xaml only, and not use a Converter for this. (I know that it could be achieved with a converter that counts the itemcollection) Is there a smarter way ?
<Grid>
<DataGrid Name="dg1">
<DataGrid.Columns>
...
</DataGrid.Columns>
</DataGrid>
<Button Name="btn1" Visibility="Visibility">
</Button>
<Grid.Triggers>
<Trigger SourceName="dg1" Property="DataGrid.Items.Count" Value="0">
<Setter TargetName="btn1" Property="Visibility" Value="Hidden"></Setter>
</Trigger>
<Trigger SourceName="dg1" Property="DataGrid.Items.Count" Value="1">
<Setter TargetName="btn1" Property="Visibility" Value="Hidden"></Setter>
</Trigger>
</Grid.Triggers>