0
嗨,大家好我試圖從另一個類中添加值到MainForm上的列表框但是我收到錯誤NullReferenceException是未處理的。這裏是我的代碼:從另一個類添加列表框項目C#
public partial class MainForm : Form
{
Seats currentSeat = new Seats();
public MainForm()
{
InitializeComponent(); // VS' s code
//1. Prepare the form before it is shown to the user.
InitializeGUI();
}
private void InitializeGUI()
{
currentSeat.Seat();
}
**class Seats**
{
private string customerName = "Me ";
MainForm mainForm;
public void Seat()
{
SetDefaultValues();
}
private void SetDefaultValues(){
for (int seat = 1; seat <= 60; seat++)
{
mainForm.listBoxReservations.Items.Add(string.Format("{0} {1} ", seat,costumerName)); // **HERE IS THE ERROR NullReferenceException was unhandled**
}
}
}
任何建議
假設 「costumerName」 是一個錯字? – Jay
嗨Jay是的costumerName是我的程序中的一個錯字是作爲變量。 – user3057055