private void ItemClear_Click(object sender, EventArgs e) { ItemIdTB.Text = ""; ItemNameTB.Text = ""; ItemNoteTB.Text = ""; PurchPriceTB.Text = "0"; GomlaPriceTB.Text = "0"; sanf_store_num.Text = "0"; KatPriceTB.Text = "0"; ItemModelTB.Text = ""; ItemBarCodeTB.Text = ""; ItemIdQTB.Text = ""; ItemNameTB.Focus(); expire_item_grid.Columns.Clear(); }
private void Window_Loaded(object sender, RoutedEventArgs e) { if (itemType == "Rename") { OkButton.Content = "Сохранить"; Title = "Изменить имя "; NewItemMessageLabel.Content = "Введите новое имя "; ItemNameTB.Focus(); ItemNameTB.SelectAll(); } else { Title = "Новый " + itemType; NewItemMessageLabel.Content = "Имя нового " + itemType + "а"; IMessageLabel.Content = "(введите имя с расширением или выберите из списка)"; foreach (string s in ext) { ItemListTB.Items.Add(s); } } }