Ejemplo n.º 1
0
 private void RabbitBar_Enter(object sender, EventArgs e)
 {
     _active = true;
     Redraw();
     if (_rabbit != null)
     {
         if (_parentPair != null)
         {
             RabbitCommandMessage cmd = new RabbitCommandMessage();
             cmd.Command              = RabbitCommandMessage.Commands.Highlight;
             cmd.TargetRabbitID       = _rabbit.ID;
             cmd.SourceWindowRabbitID = _windowRabbitID;
             _parentPair.SearchFromChild(cmd);
         }
     }
 }