1

我希望列表视图的列填充所有列表视图。我该怎么做 ?

            <ListView  Grid.Row="0" ItemsSource="{Binding }">
                <ListView.View>
                    <GridView>
                        <GridViewColumn Width="200" Header="1"  />
                        <GridViewColumn Width="300"  Header="Details" />
                    </GridView>
                </ListView.View>
            </ListView>

任何想法,谢谢, Ido

4

1 回答 1

0

尝试 Width="* ",或者如果您希望您的第一列是列表视图的 2/5,而其他 3/5 尝试第一个 Width="2 " 和第二个 Width="3*" 应该有* 在宽度中的 2 之后,我不知道为什么它没有显示

于 2013-05-22T08:54:08.877 回答