Korero – Diff between revs 1 and 2

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 1 Rev 2
Line 32... Line 32...
32 #region Constructors, Destructors and Finalizers 32 #region Constructors, Destructors and Finalizers
Line 33... Line 33...
33   33  
34 public NewConversationForm() 34 public NewConversationForm()
35 { 35 {
36 InitializeComponent(); -  
Line 37... Line 36...
37 Utilities.WindowState.FormTracker.Track(this); 36 InitializeComponent();
38   37  
39 _cancellationTokenSource = new CancellationTokenSource(); 38 _cancellationTokenSource = new CancellationTokenSource();
Line 62... Line 61...
62 } 61 }
Line 63... Line 62...
63   62  
Line 64... Line 63...
64 #endregion 63 #endregion
-   64  
-   65 #region Event Handlers
-   66 private void NewConversationForm_Load(object sender, EventArgs e)
65   67 {
66 #region Event Handlers 68 Utilities.WindowState.FormTracker.Track(this);
67   69 }
68 private void RegionListBox_SelectedIndexChanged(object sender, EventArgs e) 70 private void RegionListBox_SelectedIndexChanged(object sender, EventArgs e)
69 { 71 {
70 if (regionListBox.SelectedIndex > -1) 72 if (regionListBox.SelectedIndex > -1)
Line 260... Line 262...
260 friendsListBox.InvokeIfRequired(listBox => { listBox.Items.Add(new ConversationAvatar(item)); }); 262 friendsListBox.InvokeIfRequired(listBox => { listBox.Items.Add(new ConversationAvatar(item)); });
261 } 263 }
262 } 264 }
Line 263... Line 265...
263   265  
-   266 #endregion
-   267  
264 #endregion 268  
265 } 269 }
266 } 270 }