示例#1
0
        private void Getcellphonedata(CellPhoneData phone)
        {
            // temporary decimal to hold the price

            decimal price;

            // get the phone brand

            phone.Brand = BrandTextBox.Text;

            // get the phone model

            phone.Model = ModelTextBox.Text;

            // get the phone price

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

            else
            {
                MessageBox.Show("Not the right price");
            }
        }
示例#2
0
        private void CreateDataButton_Click(object sender, EventArgs e)
        {
            // create the cell phone object

            CellPhoneData myphone = new CellPhoneData();

            // get the phone data

            Getcellphonedata(myphone);


            // display the phone data

            OutputBrandBox.Text = myphone.Brand;
            OutputModelBox.Text = myphone.Model;
            OutputPriceBox.Text = myphone.Price.ToString("c");
        }