Korero – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System;
2 using System.Windows.Forms;
3  
4 namespace Korero.Chat
5 {
6 public partial class AutoResponseForm : Form
7 {
8 #region Public Events & Delegates
9  
10 public event EventHandler<AutoResponseSetEventArgs> AutoResponseSet;
11  
12 #endregion
13  
14 #region Constructors, Destructors and Finalizers
15  
16 public AutoResponseForm()
17 {
18 InitializeComponent();
19 Utilities.WindowState.FormTracker.Track(this);
20 }
21  
22 #endregion
23  
24 #region Event Handlers
25  
26 private void Button1_Click(object sender, EventArgs e)
27 {
28 AutoResponseSet?.Invoke(this, new AutoResponseSetEventArgs(richTextBox1.Text));
29  
30 Close();
31 }
32  
33 #endregion
34 }
35 }