本文介绍了DevExpress中GridControl和GridView有什么区别?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在DevExpress中GridControl与GridView有什么区别?
看起来GridControl是WinForm和GridView是WPF,但是我使用gxg:GridContol在我的XAML ...
这些之间还有什么关系吗?
为GridView找到,否则为GridControl。



原因是每次我在寻找帮助tp解决我的GridControl问题(),我正在使用GridView而不是GridControl进行回复。



FYI,我的网格设置如下:

 < 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>

谢谢!

解决方案

有 class for WinForms 和。 GridView WinForms GridControl 用于显示数据在桌上看。在 WPF 中没有 GridView



某些关系课程之间:



0。 GridControl for WinForms正在使用此:












1。 GridControl for WPF正在使用此:









XtraGrid套件

DXGrid套件


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 and GridControl class for WPF. 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:

XtraGrid Suite
DXGrid Suite

这篇关于DevExpress中GridControl和GridView有什么区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-20 21:47