示例#1
0
        public void BrokerChanged(TachyonFix.Core.Broker b)
        {
            var events = MainForm.CurrentSolution.Linker.Events.Where(x => x.Source == b || x.Target == b);

            Events         = events.ToList();
            end.MaxValue   = Events.Count - 1;
            start.MaxValue = Events.Count - 2;
            end.MinValue   = 0;
            start.MinValue = 0;
        }
示例#2
0
 public void BrokerChanged(TachyonFix.Core.Broker b)
 {
     panel3.Controls.Clear();
     foreach (var insightsInsight in b.Insights.Insights)
     {
         var ic = new InsightTip();
         ic.Problem  = insightsInsight.Problem;
         ic.Solution = insightsInsight.Recommendation;
         ic.Dock     = DockStyle.Top;
         panel3.Controls.Add(ic);
     }
 }
 public void BrokerChanged(TachyonFix.Core.Broker b)
 {
     DisplayActivity(b);
     DisplayTopStats(b);
 }