我在另一個項目中添加了一個現有的表單(及其引用),我試圖顯示新的表單。有沒有編碼的問題,只是一個參考錯誤:程序集引用丟失指令
The type or namespace 'frmEmail' could not be found (are you missing a using directive or an assembly reference?)
我無法弄清楚什麼是「使用」或參考我沒有導入其他形式時使用。有任何想法嗎?
這裏是代碼導致錯誤:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace Notify_Setup
{
public partial class frmNotifications : Form
{
public frmNotifications()
{
InitializeComponent();
pbBlue.MouseEnter += new EventHandler(pbBlue_MouseEnter);
}
private void pbGreen_Click(object sender, EventArgs e)
{
frmEmail frmEmail = new frmEmail();
frmEmail.Show();
this.Hide();
}
}
}
如果您不向我們顯示您的代碼,您認爲我們可以提供什麼幫助? –
打開窗體的源代碼,導航到頂部,並查看VS顯示的智能感知錯誤。 –
轉到爲frmEmail(文件頂部)定義名稱空間的位置。它可能是你原來的代碼的命名空間。將其更改爲新的代碼命名空間 – dreza