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!