简体   繁体   中英

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

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!

There are GridControl class for WinForms 0 and GridControl class for WPF 1 . 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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM