0

我将如何更改代码以消除获取座位号值并进行预订的文本框,他们可以简单地从列表框中的座位表中选择他们想要的座位,然后单击进行预订。我知道这里有一些未使用的代码需要清理,只是忽略它我一直在尝试不同的方法来做到这一点。

这是表单代码。

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;
        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);

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


        }

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

        private void DisplaySeatChart(string[] seating)
        {
            lstSeatChart.Items.Clear();
            for (int seat = 0; seat <= seating.GetUpperBound(0); seat++)
            {
                lstSeatChart.Items.Add("Seat: " + (seat + 1) + "       " + seating[seat]);
            }
        }

        private void SetupFlights()
        {


            //flightlist.Add(flight1);
            //flightlist.Add(flight2);


        }

        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);
            lstFlights.Items.Add(flight2);
        }

        private void btnMakeReservation_Click(object sender, EventArgs e)
        {
            string name;
            int seatNum;
            string[] seatChart = curFlight.SeatChart;

            if (txtCustomerName.Text != "" && txtSeatNum.Text != "")
            {
                name = txtCustomerName.Text;
                seatNum = Convert.ToInt16(txtSeatNum.Text);
                curFlight.MakeReservation(name, seatNum);

                lstSeatChart.Items.Clear();

                DisplaySeatChart(seatChart);
            }
            else
            {
                MessageBox.Show("Please Fill out Name and Seat Number.", "Reservation Error");
            }
        }

        private void btnEdit_Click(object sender, EventArgs e)
        {
            string name;
            int seatNum;
            string[] seatChart = curFlight.SeatChart;

            if (txtCustomerName.Text != "" && txtSeatNum.Text != "")
            {
                name = txtCustomerName.Text;
                seatNum = Convert.ToInt16(txtSeatNum.Text);
                curFlight.EditReservation(name, seatNum);

                lstSeatChart.Items.Clear();

                DisplaySeatChart(seatChart);
            }
            else
            {
                MessageBox.Show("Please Fill out Name and Seat Number.", "Reservation Error");
            }
        }
    }
}

这是班级代码

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

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 override string ToString()
        {
            return this.Plane;
        }


        public void MakeReservation(string name, int seat)
        {
            if (IsFull(seat) == false)
            {
                if (seat <= (Rows * Seats) && mSeatChart[seat - 1] == "Open")
                {
                    mSeatChart[seat - 1] = name;
                }
                else
                {
                    MessageBox.Show("Seat is taken.", "Reservation Error");

                }

            }
            else
            {
                MessageBox.Show("Plane is full please choose another flight.", "Reservation Error");
            }
        }

        public void EditReservation(string name, int seat)
        {
            if (seat <= (Rows * Seats) && mSeatChart[seat - 1] != "Open")
            {
                mSeatChart[seat - 1] = name;
            }
            if (seat > mSeatChart.GetUpperBound(0))
            {
                MessageBox.Show("Invalid seat number.", "Reservation Error");
            }
            else
            {
                if (mSeatChart[seat - 1] == "Open")
                {
                    MessageBox.Show("No such reservation exists.", "Reservation Error");
                }
            }

        }

        public bool IsFull(int seat)
        {
            if (seat >= (Rows * Seats) && mSeatChart[seat - 1] != "Open")
            {
                return true;
            }
            return false;
        }
    }
}
4

2 回答 2

0

您的座位表集合中的项目首先应该有一个标识符。一旦你有了它,那个标识符(或描述、名称等)应该添加到用户可以选择的列表框中。预订时,您只需确定选择了哪些列表框项目。您可以使用或不使用数据绑定来执行此操作。

    List<Seat> seats;

    private void button6_Click(object sender, EventArgs e)
    {
        seats = new List<Seat>
        {
            new Seat { Identifier = "A1", Description = "A1 - Window" },
            new Seat { Identifier = "A2", Description = "A2 - Center" },
            new Seat { Identifier = "A3", Description = "A3 - Aisle" } 
        };

        listBox1.DataSource = seats;
        listBox1.DisplayMember = "Description";
        listBox1.ValueMember = "Identifier"; 
    }

    private void button7_Click(object sender, EventArgs e)
    {
        // get selected seat
        foreach (Seat selectedSeat in listBox1.SelectedItems)
        {
            MessageBox.Show(selectedSeat.Identifier);
        }
    }

当然,您可以围绕示例进行操作并仅显示那些空闲的座位。您可以通过多种方式做到这一点,其中之一是在您的 Seat 类上添加一个标志。

于 2012-11-27T04:22:49.593 回答
0

答案很简单而不是

seatNum = Convert.ToInt16(txtSeatNum.Text);

采用

seatNum = lst.SeatChart.SelectedIndex + 1;
于 2012-12-02T09:46:09.040 回答