2
如何在UltraGrid中準確獲取擴展的UltraGridColumn寬度?獲取超網格的實際寬度
我有以下的Windows窗體:
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
IEnumerable<string> test = new List<string>{DateTime.Now.ToString()};
this.ultraGrid2.DataSource = test;
this.ultraGrid2.DisplayLayout.AutoFitStyle = AutoFitStyle.ExtendLastColumn;
}
private void button1_Click(object sender, EventArgs e)
{
MessageBox.Show("The column width is " + this.ultraGrid2.DisplayLayout.Bands[0].Columns[0].Width);
}
}
不管我如何操作或調整窗體。 width
仍然給出相同的默認值。只有當我調整列的大小時,它纔會改變。在這種情況下,我認爲寬度將接近表單本身的x大小。
謝謝你的解釋和解決方法。 – 2013-02-08 21:34:54