SetDataBinding(object DataSource、string DataMember、bool hiddenNewColumns)を呼び出すときに、キーの事前操作はどのようにUltraGridに設定されますか?そして、どうすればそれ以外のものに設定できますか?List'1
私は次のフォームとクラスを持っています:
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
this.ultraGrid2.SetDataBinding(new List<row>(), string.Empty, true);
this.ultraGrid2.DisplayLayout.ColumnChooserEnabled = DefaultableBoolean.True;
// breakpoint on the above line and run the below immediate window code
}
}
public class row
{
public string Name { get; set; }
public string Address { get; set; }
}
データバインディングを設定した後、次のコードは常にList'1
イミディエイトウィンドウに表示されます。
this.ultraGrid2.DisplayLayout.Bands[0].Key