예제 #1
0
 /// <summary>
 /// Displays the WvW Tracker window, or, if already displayed,
 /// sets focus to the window
 /// </summary>
 private void DisplayWvWTracker()
 {
     if (this.wvwTrackerView == null || !this.wvwTrackerView.IsVisible)
     {
         this.wvwTrackerView = new WvWTrackerView(this.WvWController, this.WvWMap);
         this.wvwTrackerView.Show();
     }
     else
     {
         this.wvwTrackerView.Focus();
     }
 }
예제 #2
0
 /// <summary>
 /// Displays the WvW Tracker window, or, if already displayed, sets
 /// focus to the window
 /// </summary>
 public void DisplayWvWTracker()
 {
     if (this.wvwTrackerView == null || !this.wvwTrackerView.IsVisible)
     {
         this.wvwTrackerView = new WvWTrackerView();
         this.Container.ComposeParts(this.wvwTrackerView);
         this.wvwTrackerView.Show();
     }
     else
     {
         this.wvwTrackerView.Focus();
     }
 }