如何在网格中定义列定义?

时间:2012-07-26 12:43:07

标签: silverlight windows-phone-7 datagrid

我有一个固定行数的网格,但列不固定。那么如何设置列定义。有没有办法在xaml中编写它?

1 个答案:

答案 0 :(得分:2)

您有行定义和列定义:

<Grid>
    <Grid.ColumnDefinitions>
        <ColumnDefinition Width="250" />
        <ColumnDefinition Width="150" />
    </Grid.ColumnDefinitions>
    <Grid.RowDefinitions>
        <RowDefinition Height="Auto" />
        <RowDefinition Height="2*" />
        <RowDefinition Height="*"/>
    </Grid.RowDefinitions>
</Grid