& # 39;类型# 39;不包含'member'的定义并且没有扩展方法'name'接受

本文关键字:扩展 name 接受 方法 类型 包含 member 定义 | 更新日期: 2023-09-27 17:52:39

我对在我的程序中使用任何与图形相关的东西都很陌生,我被难住了,因为它给了我错误'type' does not contain a definition for 'member' and no extension method 'name' accepting a first argument of type 'type' could be found。我已经实例化了对象,但它仍然给我问题,我只是试图调用visual studio为窗口面板制作的自动生成代码。

下面是main的代码:
namespace TesterProject 
{
  public class Program
  {
    static void Main(string[] args)
    {
       logInOut person = new logInOut(); 
       Display visualizer = new Display();
       visualizer.Display();
       person.login();
    }    
  }    
}

这里是我要调用的类(Display):

namespace TesterProject
{
  public partial class Display : Form
  {
    public Display()
    {
        InitializeComponent();
    } 

你们能提供的任何帮助都是很棒的,谢谢!

& # 39;类型# 39;不包含'member'的定义并且没有扩展方法'name'接受

这只是一个构造函数:

public Display()
    {
        InitializeComponent();
    } 

所以当你调用这个时:

Display visualizer = new Display();

它实际上是被调用的构造函数,所以你不需要尝试再次调用它。

看起来应该是:

namespace TesterProject 
{
public class Program
{
   static void Main(string[] args)
    {
       logInOut person = new logInOut(); 
       Display visualizer = new Display();
       person.login();
   }    
 }    
}