using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Windows.Navigation; using System.Windows.Shapes; using System.Windows.Threading; //DispatcherTimer namespace project_2 { /// /// Interaction logic for MainWindow.xaml /// public partial class MainWindow : Window { public MainWindow() { InitializeComponent(); } private void ButtonAddName_Click(object sender, RoutedEventArgs e) { // jeśli pole tekstowe nie jest puste oraz ListBox nie ma jeszcze danego imienia if (!string.IsNullOrWhiteSpace(txtName.Text) && !lstNames.Items.Contains(txtName.Text)) { // zamieniamy wszystkie litery na małe if (txtName.Text.ToLower() != "skarpetki") { lstNames.Items.Add(txtName.Text); txtName.Clear(); } else { MessageBox.Show("tylko nie skarpetki"); lstNames.Items.Add("samochod"); txtName.Clear(); // opóźnienie 1s wyswietlenia MessageBox.Show("ooooo samochod"); var timer = new DispatcherTimer { Interval = TimeSpan.FromSeconds(1) }; timer.Start(); timer.Tick += (sender, args) => { timer.Stop(); // pokazanie okienka z opóźnieniem MessageBox.Show("ooooo samochod!!!"); }; } } } } }