简体   繁体   中英

How to add CheckBox at DevExpress xtraGrid

我想在DevExpress的xtraGrid列添加CheckBox,因此我该怎么办

Create a new Editor Repository Item (CheckEdit) in the grid's designer (under In-Place Editor Repository) and add it to the ColumnEdit property of the column (under Columns)

EDIT: Adding programmatically

Dim repstryItemCheckEdit As New RepositoryItemCheckEdit

GridControl.RepositoryItems.Add(repstryItemCheckEdit)

Dim chckEdtColumn As GridColumn = myGrid.Columns.AddField("Select")

With chckEdtColumn
  .VisibleIndex = myGrid.Columns.Count
End With
myGrid.Columns.Add(grsSalColumn)

myGrid.Columns("Select").ColumnEdit = repstryItemCheckEdit

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