Beispiel #1
0
 private void bContinue_Click(object sender, EventArgs e)
 {
     if (tName.TextLength > 0 && tProducer.TextLength > 0 && tMaterial.TextLength > 0 &&
         tPrice.TextLength > 0 && tColor.TextLength > 0 && cbType.SelectedIndex != -1)
     {
         var trousers = new Trousers(tName.Text, tProducer.Text, tMaterial.Text, Convert.ToDouble(tPrice.Text), tColor.Text, (TrousersType)cbType.SelectedItem);
         storage.AddItem(trousers);
         this.Close();
     }
 }
Beispiel #2
0
        public TrousersForm(string itemName)
        {
            InitializeComponent();
            InitializeForm();

            Trousers item = (Trousers)storage.GetItem(itemName);

            tName.Text          = item.Name;
            tProducer.Text      = item.Producer;
            tMaterial.Text      = item.MainMaterial;
            tColor.Text         = item.Color;
            tPrice.Text         = item.Price.ToString();
            cbType.SelectedItem = item.Type;
            tName.Enabled       = false;
        }