Hi,
Very simple question ...
Can I use the WPF datagrid control in the same way I use a regular grid ?
How can I do the following but using a WPF datagrid instead of using the standard Grid ?
<Grid Width="542" Margin="0,12,0,0" HorizontalAlignment="Left">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="182" />
<ColumnDefinition Width="360" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<Label Grid.Row="0" Grid.Column="0" >
Configuration Software:
</Label>
<TextBlock Grid.Row="0" Grid.Column="1" Text="{Binding Path=Software.Name}">
</TextBlock>
</Grid>