What's the difference between GridControl and GridView in DevExpress?

What's the difference between GridControl and GridView in DevExpress? It seems the GridControl is WinForm and the GridView is WPF, but I am using gxg: GridContol in my XAML ... Is there any relationship between them? Found this for GridView, not for GridControl.

The reason is that every time I am looking for help I solve my problems with GridControl ( Inner text of DevExpress GridControl cell but not editable ), I was answered with GridView instead of GridControl.

FYI, my grid is set up like this:

<dxg:GridControl>
    <dxg:GridControl.Resources>
    </dxg:GridControl.Resources>
    <dxg:GridControl.View>
        <dxg:GridControl.TableView>
        </dxg:GridControl.TableView>
    </dxg:GridControl.View>
    <dxg:GridControl.Columns>
    </dxg:GridControl.Columns>
</dxg:GridControl>

      

Thank!

+3


source to share


1 answer


There is a GridControl

class for WinForms

0 and a GridControl

class for WPF

1 . GridView

used WinForms

GridControl

to display data in a table. In WPF

no GridView

.

Some relationship between classes:

0.GridControl for WinForms uses this views :



1.GridControl for WPF uses this views :

0 XtraGrid Suite
1 DXGrid Suite

+3


source







All Articles