Example #1
0
 /// <summary>
 /// Handles the CharacterPlaneteryPinsCompleted event of the EveMonClient control.
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="e">The <see cref="PlanetaryPinsEventArgs"/> instance containing the event data.</param>
 private void EveMonClient_CharacterPlaneteryPinsCompleted(object sender, PlanetaryPinsEventArgs e)
 {
     if (e.Character == this)
     {
         EveMonClient.Notifications.NotifyCharacterPlanetaryPinCompleted(this,
                                                                         e.CompletedPins);
     }
 }
Example #2
0
        /// <summary>
        /// Handles the CharacterPlaneteryPinsCompleted event of the EveMonClient control.
        /// </summary>
        /// <param name="sender">The source of the event.</param>
        /// <param name="e">The <see cref="PlanetaryPinsEventArgs"/> instance containing the event data.</param>
        private void EveMonClient_CharacterPlaneteryPinsCompleted(object sender, PlanetaryPinsEventArgs e)
        {
            if (e.Character != this)
            {
                return;
            }

            // Notify completed pins the character
            EveMonClient.Notifications.NotifyCharacterPlanetaryPinCompleted(this, e.CompletedPins);
        }