Example #1
0
        private void AddPhoneButton_Click(object sender, EventArgs e)
        {
            // create a cellphone object

            CellPhoneInventory myphone = new CellPhoneInventory();

            // get the phone data

            getdata(myphone);

            //Add the cell phone object to the list

            phoneList.Add(myphone);

            // add the entry to the list box

            PhoneListBox.Items.Add(myphone.Brand + " " + myphone.Model);

            // clear the contents of the textbox

            BrandTextBox.Clear();
            ModelTextBox.Clear();
            PriceTextBox.Clear();

            BrandTextBox.Focus();
        }
Example #2
0
        private void getdata(CellPhoneInventory phone)
        {
            // declare a decimal

            decimal price;

            // get the phones brand

            phone.Brand = BrandTextBox.Text;

            // get the phones model

            phone.Model = ModelTextBox.Text;

            // get the phones price


            if (decimal.TryParse(PriceTextBox.Text, out price))
            {
                phone.Price = price;
            }

            else
            {
                MessageBox.Show("Invalid Price");
            }
        }