Example #1
0
 private void Chronicler_Milestone(IChronicler chronicler, string key)
 {
     if (key == this._milestone)
     {
         this.IsMilestoneReached = true;
         this.OnPassed(EventArgs.Empty);
     }
 }
Example #2
0
        void chronicler_MilestoneHandler(IChronicler chronicler, string key)
        {
            WebPart part = chronicler as WebPart;

            if (key == "show popup")
            {
                this.ActiveWebPart = part.ID;
            }
            else if (key == "hide popup" && this.ActiveWebPart == part.ID)
            {
                this.ActiveWebPart = null;
            }
        }
Example #3
0
 protected void Selector_Milestone(IChronicler chronicler, string key)
 {
     this.OnMilestone(key);
 }
Example #4
0
 protected void Selector_Milestone(IChronicler chronicler, string key)
 {
     this.OnMilestone(key);
 }
Example #5
0
 private void Chronicler_Milestone(IChronicler chronicler, string key)
 {
     if (key == this._milestone)
     {
         this.IsMilestoneReached = true;
         this.OnPassed(EventArgs.Empty);
     }
 }