VB.NET类到C#转换失败

时间:2014-05-10 16:10:14

标签: c#

我学习了C#,并将一些来自VB.NET的代码从DeveloperFusion转换为C#,但C#不接受它。这是代码......

namespace MP3Strip
{
    public class listViewDoubleBuffered : ListView
    {
        public listViewDoubleBuffered()
        {
            this.DoubleBuffered = true;
        }
    }
}

:ListView和this.DoubleBuffered在它们下面都有红线。我该如何解决这个问题?

1 个答案:

答案 0 :(得分:1)

在文件顶部添加System.Windows.Controls命名空间。

using System.Windows.Controls

namespace MP3Strip
{ 
  public class listViewDoubleBuffered : ListView
  {
      public listViewDoubleBuffered()
      {
          this.DoubleBuffered = true;
      }
   }
}