1

我想在旁边的文本框中显示有关在列表框中选择的任何航班的信息。我的问题是我无法让我的 curFlight 变量正常工作,这给了我 InvalidCastException 是未处理的错误,并说当从数字转换时,该值必须是小于无穷大的数字。

这是我的表单代码

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 Reservations
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        Flight curFlight;

        Flight flight1 = new Flight("Cessna Citation X", "10:00AM", "Denver", 6, 2);
        Flight flight2 = new Flight("Piper Mirage", "10:00PM", "Kansas City", 3, 2);

        private void Form1_Load(object sender, EventArgs e)
        {
            MakeReservations();
            DisplayFlights();

        }

        private void lstFlights_SelectedIndexChanged(object sender, EventArgs e)
        {
            curFlight = (Flight)lstFlights.SelectedItem;
            txtDepart.Text = curFlight.DepartureTime;
            txtDestination.Text = curFlight.Destination;
        }

        private void MakeReservations()
        {
            flight1.MakeReservation("Dill", 12);
            flight1.MakeReservation("Deenda", 3);
            flight1.MakeReservation("Schmanda", 11);
            flight2.MakeReservation("Dill", 4);
            flight2.MakeReservation("Deenda", 2);
        }

        private void DisplayFlights()
        {
            lstFlights.Items.Clear();
            lstFlights.Items.Add(flight1.Plane);
            lstFlights.Items.Add(flight2.Plane);
        }

        private void btnMakeReservation_Click(object sender, EventArgs e)
        {
            string name;
            int seatNum;

            name = txtCustomerName.Text;
            seatNum = Convert.ToInt16(txtSeatNum.Text);

            curFlight.MakeReservation(name, seatNum);
        }
    }
}

这是班级代码

 using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Reservations
{
    class Flight
    {
        private string mPlane;
        private string mDepartureTime;
        private string mDestination;
        private int mRows;
        private int mSeats;
        private string[] mSeatChart;

        public Flight()
        {
        }

        public Flight(string planeType, string departureTime, string destination, int numRows, int numSeatsPerRow)
        {
            this.Plane = planeType;
            this.DepartureTime = departureTime;
            this.Destination = destination;
            this.Rows = numRows;
            this.Seats = numSeatsPerRow;

            // create the seat chart array
            mSeatChart = new string[Rows * Seats];

            for (int seat = 0; seat <= mSeatChart.GetUpperBound(0); seat++)
            {
                mSeatChart[seat] = "Open";
            }
        }

        public string Plane
        {
            get { return mPlane; }
            set { mPlane = value; }
        }

        public string DepartureTime
        {
            get { return mDepartureTime; }
            set { mDepartureTime = value; }
        }

        public string Destination
        {
            get { return mDestination; }
            set { mDestination = value; }
        }

        public int Rows
        {
            get { return mRows; }
            set { mRows = value; }
        }

        public int Seats
        {
            get { return mSeats; }
            set { mSeats = value; }
        }

        public string[] SeatChart
        {
            get { return mSeatChart; }
            set { mSeatChart = value; }
        }


        public void MakeReservation(string name, int seat)
        {
            if (seat <= (Rows * Seats) && mSeatChart[seat - 1] == "Open")
            {
                mSeatChart[seat - 1] = name;
            }
            else
            {
                //let calling program know it didnt work.

            }
        }

        public bool IsFull()
        {
            return false;
        }
    }
}
4

2 回答 2

2

您收到错误的原因是因为您正在将一个字符串分配给列表框,然后尝试将该字符串强制转换为飞行对象

lstFlights.Items.Add(flight1.Plane);   // Just say it is named "Plane 1"
lstFlights.Items.Add(flight2.Plane);   // Just say it is named "Plane 2"


curFlight = (Flight)lstFlights.SelectedItem; // Now you are trying to convert "Plane 2" into a flight object which is incorrect

试试这个

添加类型航班的全球列表

List<Flight> flightList = new List<Flight>();

Flight flight1 = new Flight("Cessna Citation X", "10:00AM", "Denver", 6, 2);
Flight flight2 = new Flight("Piper Mirage", "10:00PM", "Kansas City", 3, 2);

在您的表单加载中添加 SetupFlights

private void Form1_Load(object sender, EventArgs e)
{
        MakeReservations();
        DisplayFlights();
        SetupFlights();  // added this line
}

 private void SetupFlights()
 {
        flightList.Add(flight1);
        flightList.Add(flight2);
 }

并且您选择的 Index Changed 应该是这样的

private void lstFlights_SelectedIndexChanged(object sender, EventArgs e)
{
        curFlight = flightList.FirstOrDefault(x => x.Plane == lstFlights.SelectedItem.ToString()); // Changed this line
        txtDepart.Text = curFlight.DepartureTime;
        txtDestination.Text = curFlight.Destination;
}
于 2012-11-27T01:25:07.637 回答
1

虽然 MVCKarl 的答案更笼统,但我将展示一种更简单的方法,它可能适合简单的情况。

您可以简单地覆盖ToString该类Flight

class Flight
{
    //your code

    public override string ToString()
    {
        //or anything you want to display
        return this.Plane;
    }        
}

然后编辑DisplayFlights方法以将航班添加到列表中:

private void DisplayFlights()
{
    lstFlights.Items.Clear();
    lstFlights.Items.Add(flight1);
    lstFlights.Items.Add(flight2);
}

在此之后,您lstFlights_SelectedIndexChanged将按预期开始工作:

private void lstFlights_SelectedIndexChanged(object sender, EventArgs e)
{
    curFlight = (Flight)lstFlights.SelectedItem;
    textBox1.Text = curFlight.DepartureTime;
    textBox2.Text = curFlight.Destination;
}
于 2012-11-27T01:44:13.443 回答