最近在学习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后重建索引。
相关文章
- 03-23基环树学习笔记
- 03-23虚树学习笔记
- 03-23SSM框架学习笔记day4---Mybatis核心组件
- 03-23最近公共祖先(lca)学习笔记
- 03-23SDRAM学习笔记(一) sdram_init
- 03-23Day4 Hello world输出 学习笔记
- 03-23Python学习笔记 (3) :列表、元组的操作
- 03-23spring源码学习笔记之容器的基本实现(一)
- 03-23每天学点Vue,学习笔记---DAY4
- 03-23TCP/IP详解 卷一学习笔记(转载)