在设计时设置的Listview列宽在运行时未使用

时间:2013-11-29 03:30:26

标签: c# listview

我通过在设计时拖动列表视图控件中的列边框来手动定义列宽,但在运行时,所有列都以相同的宽度显示。

InitialiseComponent中的代码是

// 
        // lstLicenses
        // 
        this.lstLicenses.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
        this.Company,
        this.ExpiryDate,
        this.MaxUsers,
        this.Key});
        this.lstLicenses.Location = new System.Drawing.Point(465, 46);
        this.lstLicenses.MultiSelect = false;
        this.lstLicenses.Name = "lstLicenses";
        this.lstLicenses.Size = new System.Drawing.Size(565, 228);
        this.lstLicenses.TabIndex = 18;
        this.lstLicenses.UseCompatibleStateImageBehavior = false;
        this.lstLicenses.View = System.Windows.Forms.View.Details;`

` 似乎没有存储设计时间列宽信息。解决方法是在加载后手动定义列宽,如下所示,但这不是必需的。

string queryString = "SELECT * FROM dbo.Licenses";
                SqlDataAdapter adapter = new SqlDataAdapter(queryString, sEnv);

                DataSet Licenses = new DataSet();
                adapter.Fill(Licenses, "Licenses");
                int iLicensesRows = Licenses.Tables[0].Rows.Count;
                foreach (DataRow row in Licenses.Tables[0].Rows)
                {
                ListViewItem LVI = lstLicenses.Items.Add(row["Company"].ToString());
                LVI.SubItems.Add(row["ExpiryDate"].ToString());
                LVI.SubItems.Add(row["MaxUsers"].ToString());
                LVI.SubItems.Add(row["Key"].ToString());
                }
                lstLicenses.Columns[0].Width = 100;
                lstLicenses.Columns[1].Width = 130;
                lstLicenses.Columns[2].Width = 85;
                lstLicenses.Columns[3].Width = 225;

有谁能告诉我如何在运行时获得设计时间列宽?

1 个答案:

答案 0 :(得分:-1)

问题:您通过以下语句手动设置widths ListView的{​​{1}}:

columns

以上语句会覆盖您的设计时 lstLicenses.Columns[0].Width = 100; lstLicenses.Columns[1].Width = 130; lstLicenses.Columns[2].Width = 85; lstLicenses.Columns[3].Width = 225; 。所以最后根据上述语句设置Widths列宽。

解决方案您应该评论/删除上述语句,以获得ListView设置的Widths

Comlete解决方案:

designtime