在Visual Studio中使用ListView可能存在错误?

时间:2015-03-09 08:02:53

标签: c# winforms listview visual-studio-2012

不确定这是否是一个错误,但最近我一直在Visual Studio中使用ListView。

我将其添加到InitializeComponent(),代码如下:

this.lvBeamValue.Columns.Add("A");
this.lvBeamValue.Columns.Add("B");
this.lvBeamValue.Columns.Add("C");
this.myListView.View = System.Windows.Forms.View.Details;

之后当我尝试使用设计器添加(比如标签)时,系统会自动删除这些行。 (当我将设计器用于其他任何事情时,就会发生这种情况,例如,通过在设计器中双击来添加事件)。

当然,如果我手动编码(比如事件处理程序),就不会发生这种自动删除。

只是为了检查这是不是一个错误?

1 个答案:

答案 0 :(得分:0)

你怎么可能错过这个:

    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>