DevExpress学习笔记1-ProductsDemo.Win_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > DevExpress学习笔记1-ProductsDemo.Win

DevExpress学习笔记1-ProductsDemo.Win

 2014/11/16 23:06:44  天使爱比目鱼  程序员俱乐部  我要评论(0)
  • 摘要:最近在学习ProductsDemo.Win,有一些体会记录下来,大家分享:在Contacts模块:在PrivateSubUpdateCurrentContact()过程添加一句:InitIndex(DataHelper.Contacts)'根据Contacts数据库重建索引在PublicSubSetupGrid(ByVallistAsList(OfAlphaIndex),ByValgridAsGridControl)过程添加代码后如下:DimviewAsGridView=TryCast
  • 标签:笔记 学习 学习笔记

最近在学习ProductsDemo.Win,有一些体会记录下来,大家分享:
 在Contacts模块:
在Private Sub UpdateCurrentContact()过程添加一句:InitIndex(DataHelper.Contacts)'根据Contacts数据库重建索引
在Public Sub SetupGrid(ByVal list As List(Of AlphaIndex), ByVal grid As GridControl)过程添加代码后如下:
Dim view As GridView = TryCast(grid.MainView, GridView)
            view.Columns.Clear()'清理索引列
            view.Columns.AddVisible("Index")
            grid.DataSource = list
   AddHandler view.FocusedRowChanged, AddressOf view_FocusedRowChanged
实现更改Contacts的Last Name后重建索引。

上一篇: 关于在App_Code文件夹自定义类中Session无法使用 下一篇: 没有下一篇了!
发表评论
用户名: 匿名