public ChatHistory() { if(chatHistory != null) throw new InvalidOperationException(); chatHistory = this; InitializeComponent(); }
private void ChatHistory_FormClosing(object sender, FormClosingEventArgs e) { MessageHistory.Instance.OnNewMessage -= OnNewMessage; chatHistory = null; }