public DynamoView()
        {
            tabSlidingWindowStart = tabSlidingWindowEnd = 0;            

            _timer = new Stopwatch();
            _timer.Start();

            InitializeComponent();
            
            this.Loaded += dynBench_Activated;

            //setup InfoBubble for library items tooltip
            InfoBubbleView InfoBubble = new InfoBubbleView { DataContext = dynSettings.Controller.InfoBubbleViewModel };
            InfoBubbleGrid.Children.Add(InfoBubble);
        }
Example #2
0
        public DynamoView()
        {
            tabSlidingWindowStart = tabSlidingWindowEnd = 0;

            _timer = new Stopwatch();
            _timer.Start();

            InitializeComponent();

            this.Loaded += dynBench_Activated;

            //setup InfoBubble for library items tooltip
            InfoBubbleView InfoBubble = new InfoBubbleView {
                DataContext = dynSettings.Controller.InfoBubbleViewModel
            };

            InfoBubbleGrid.Children.Add(InfoBubble);
        }