Exemple #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 socks = new Socks(tName.Text, tProducer.Text, tMaterial.Text, Convert.ToDouble(tPrice.Text), tColor.Text, (LengthType)cbType.SelectedItem);
         storage.AddItem(socks);
         this.Close();
     }
 }
Exemple #2
0
        public SocksForm(string itemName)
        {
            InitializeComponent();
            InitializeForm();

            Socks item = (Socks)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.Length;
            tName.Enabled       = false;
        }