'宣言 Public Class RowsCollection Inherits Infragistics.Shared.SubObjectsCollectionBase
public class RowsCollection : Infragistics.Shared.SubObjectsCollectionBase
Imports Infragistics.Shared Imports Infragistics.Win Imports Infragistics.Win.UltraWinGrid Private Sub CheckBox1_CheckedChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles CheckBox1.CheckedChanged If Me.CheckBox1.Checked Then ' Expand all the rows. You can pass in true to recursively expand all the ' descendant rows as well. Me.UltraGrid1.Rows.ExpandAll(False) Else ' Collapse all the rows. You can pass in true to recursively collapse all the ' descendant rows as well. Me.UltraGrid1.Rows.CollapseAll(False) End If End Sub
using Infragistics.Shared; using Infragistics.Win; using Infragistics.Win.UltraWinGrid; using System.Diagnostics; private void checkBox1_CheckedChanged(object sender, System.EventArgs e) { if ( this.checkBox1.Checked ) { // Expand all the rows. You can pass in true to recursively expand all the // descendant rows as well. this.ultraGrid1.Rows.ExpandAll( false ); } else { // Collapse all the rows. You can pass in true to recursively collapse all the // descendant rows as well. this.ultraGrid1.Rows.CollapseAll( false ); } }