'宣言 Public Property HeaderCheckBoxSynchronization As HeaderCheckBoxSynchronization
public HeaderCheckBoxSynchronization HeaderCheckBoxSynchronization {get; set;}
Private Sub SetupGrid(ByRef grid As UltraGrid) 'Return if no grid is supplied. ' If grid Is Nothing Then Exit Sub End If ' Set the HeaderCheckBoxVisibility so it will display the CheckBox whenever a CheckEditor is used within the UltraGridColumn ' grid.DisplayLayout.Override.HeaderCheckBoxVisibility = HeaderCheckBoxVisibility.WhenUsingCheckEditor ' Set the HeaderCheckBoxAlignment so the CheckBox will appear to the Right of the caption. ' grid.DisplayLayout.Override.HeaderCheckBoxAlignment = HeaderCheckBoxAlignment.Right ' Set the HeaderCheckBoxSynchronization so all rows within the GridBand will be synchronized with the CheckBox ' grid.DisplayLayout.Override.HeaderCheckBoxSynchronization = HeaderCheckBoxSynchronization.Band End Sub
private void SetupGrid(UltraGrid grid) { //Return if no grid is supplied. if (grid == null) return; // Set the HeaderCheckBoxVisibility so it will display the CheckBox whenever a CheckEditor is used within the UltraGridColumn // grid.DisplayLayout.Override.HeaderCheckBoxVisibility = HeaderCheckBoxVisibility.WhenUsingCheckEditor; // Set the HeaderCheckBoxAlignment so the CheckBox will appear to the Right of the caption. // grid.DisplayLayout.Override.HeaderCheckBoxAlignment = HeaderCheckBoxAlignment.Right; // Set the HeaderCheckBoxSynchronization so all rows within the GridBand will be synchronized with the CheckBox // grid.DisplayLayout.Override.HeaderCheckBoxSynchronization = HeaderCheckBoxSynchronization.Band; }