WPF Empty Row in ItemsControl Binding with ObservableCollection

Posted by YoMo on Stack Overflow See other posts from Stack Overflow or by YoMo
Published on 2013-11-03T09:44:14Z Indexed on 2013/11/03 9:53 UTC
Read the original article Hit count: 234

Filed under:
|
|

I have ItemsControl Binding with ObservableCollection, every think is oky excipt when ObservableCollection was empty the ItemsControl showing one empty row !!

<ItemsControl  Visibility="Visible" ItemsSource="{Binding ocItemsinInvoice,Mode=TwoWay}" x:Name="test" Margin="10,-32,0,207" Width="412" HorizontalAlignment="Left">
    <ItemsControl.ItemsPanel>
        <ItemsPanelTemplate>
            <UniformGrid Columns="1" VerticalAlignment="Top" />
        </ItemsPanelTemplate>
    </ItemsControl.ItemsPanel>

    <ItemsControl.ItemTemplate>
        <DataTemplate>
            <Button x:Name="btnOpenInvoice" Style="{StaticResource OpenInvoicesButton}" FontSize="12" Width="300" Height="60" Foreground="#ff252526">
                <StackPanel Orientation="Vertical">
                    <TextBlock Text="{Binding Item.ItemName}" HorizontalAlignment="Center" VerticalAlignment="Center" />
                </StackPanel>
            </Button>
        </DataTemplate>
    </ItemsControl.ItemTemplate>
</ItemsControl>

How can I remove it?

© Stack Overflow or respective owner

Related posts about c#

Related posts about wpf