private void AddBtn_Click(object sender, EventArgs e) { if (TextTB.Equals(null)) { ListLB.Items.Add(DateDTP.Value.Date.ToString().Remove(10, 9) + " : " + TextTB.Text); //Snaha se zbavit času v listu. Plánuji zaměnit za vlastní třídu s hodnotou DateTime pokud to půjde. ListBox se sám uspořádává } else { MessageBox.Show("No input in text box", "Invalid input"); } }
private void SendTextBtn_Click(object sender, RoutedEventArgs e) { if (!string.IsNullOrWhiteSpace(TextTB.Text)) { try { Server.SendMessageToALL(TextTB.Text, myUserName); TakeMessage(TextTB.Text, "Você"); TextTB.Clear(); } catch (Exception ex) { System.Windows.MessageBox.Show(ex.Message.ToString(), "Error!"); } } }