4

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

Reason is that each time I'm looking for help tp solve my GridControl issues (DevExpress GridControl cells' inner text selectable but not editable), I am being answered with a GridView instead of GridControl.

FYI, my grid is setup 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 you!

Community
  • 1
  • 1
goul
  • 813
  • 1
  • 13
  • 32

1 Answers1

5

There are GridControl class for WinForms0 and GridControl class for WPF1. GridView is used by WinForms's GridControl to show data in table-like view. There are no GridView in WPF.

Some relationship between classes:

0. GridControl for WinForms is using this views:

1. GridControl for WPF is using this views:

0 XtraGrid Suite
1 DXGrid Suite

nempoBu4
  • 6,521
  • 8
  • 35
  • 40