C#プログラムをコンパイルしようとすると、次のエラーが表示されます。
The type or namespace name 'Login' 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 FootballLeague
{
public partial class MainMenu : Form
{
FootballLeagueDatabase footballLeagueDatabase;
Game game;
Team team;
Login login; //Error here
public MainMenu()
{
InitializeComponent();
changePanel(1);
}
public MainMenu(FootballLeagueDatabase footballLeagueDatabaseIn)
{
InitializeComponent();
footballLeagueDatabase = footballLeagueDatabaseIn;
}
private void Form_Loaded(object sender, EventArgs e)
{
}
private void gameButton_Click(object sender, EventArgs e)
{
int option = 0;
changePanel(option);
}
private void scoreboardButton_Click(object sender, EventArgs e)
{
int option = 1;
changePanel(option);
}
private void changePanel(int optionIn)
{
gamePanel.Hide();
scoreboardPanel.Hide();
string title = "Football League System";
switch (optionIn)
{
case 0:
gamePanel.Show();
this.Text = title + " - Game Menu";
break;
case 1:
scoreboardPanel.Show();
this.Text = title + " - Display Menu";
break;
}
}
private void logoutButton_Click(object sender, EventArgs e)
{
login = new Login();
login.Show();
this.Hide();
}
Login.cs
クラス: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 FootballLeagueSystem
{
public partial class Login : Form
{
MainMenu menu;
public Login()
{
InitializeComponent();
}
private void administratorLoginButton_Click(object sender, EventArgs e)
{
string username1 = "08247739";
string password1 = "08247739";
if ((userNameTxt.Text.Length) == 0)
MessageBox.Show("Please enter your username!");
else if ((passwordTxt.Text.Length) == 0)
MessageBox.Show("Please enter your password!");
else if (userNameTxt.Text.Equals("") || passwordTxt.Text.Equals(""))
MessageBox.Show("Invalid Username or Password!");
else
{
if (this.userNameTxt.Text == username1 && this.passwordTxt.Text == password1)
MessageBox.Show("Welcome Administrator!", "Administrator Login");
menu = new MainMenu();
menu.Show();
this.Hide();
}
}
private void managerLoginButton_Click(object sender, EventArgs e)
{
{
string username2 = "1111";
string password2 = "1111";
if ((userNameTxt.Text.Length) == 0)
MessageBox.Show("Please enter your username!");
else if ((passwordTxt.Text.Length) == 0)
MessageBox.Show("Please enter your password!");
else if (userNameTxt.Text.Equals("") && passwordTxt.Text.Equals(""))
MessageBox.Show("Invalid Username or Password!");
else
{
if (this.userNameTxt.Text == username2 && this.passwordTxt.Text == password2)
MessageBox.Show("Welcome Manager!", "Manager Login");
menu = new MainMenu();
menu.Show();
this.Hide();
}
}
}
private void cancelButton_Click(object sender, EventArgs e)
{
this.Close();
}
}
}
エラーはどこにありますか?私は何を間違えていますか?
参照としてLoginクラスが含まれる名前空間がありません。
Login
クラスを使用するフォームに次を追加します。
using FootballLeagueSystem;
別の namespace でクラスを使用する場合は、コンパイラの場所を指定する必要があります。この場合、Login
はFootballLeagueSystem
名前空間内にあります。またはFootballLeagueSystem.Login
は、完全修飾ネームスペースです。
コメント者が指摘したように、LoginクラスはFootballLeagueSystem
名前空間内で宣言しますが、FootballLeague
名前空間で使用しています。
プロジェクトの.netフレームワークのバージョンがDLLリンク先のフレームワークのバージョンと一致しない場合、このエラーが発生します。私の場合、次のようになりました。
「タイプまたは名前空間名「UserVoice」が見つかりませんでした(usingディレクティブまたはAssembly参照がありませんか?)。
UserVoiceは.Net 4.0で、プロジェクトプロパティは「.Net 4.0 Client Profile」に設定されていました。プロジェクトで.Net 4.0に変更すると、エラーが解消されました。これが誰かの助けになることを願っています。
次の行を追加する必要があります。
using FootballLeagueSystem;
Login
を使用するすべてのクラス(MainMenu.cs、programme.csなど)に追加します。
現時点では、コンパイラはLogin
クラスを見つけることができません。
このエラーは、コンパイルでクラスの場所がわからないために発生します。そのため、主にアイテムをコピーまたはインポートするときに発生します。これを解決するために。プロジェクトの名前。
プロジェクト内の別のフォルダーにログインしている場合は、それを使用している場所で次のことを確認してください。
using FootballLeagueSystem.[Whatever folder you are using]