Click here to Skip to main content
15,893,487 members
Articles / Desktop Programming / Windows Forms

Diagrams with Reflector and the Graph Plug-in (Part 2)

Rate me:
Please Sign up or sign in to vote.
4.27/5 (7 votes)
23 Feb 2009CPOL6 min read 35.2K   1.1K   38  
Graphing other dependencies, without Reflector now.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
using System.Windows.Forms;

using Refractor.Common;

namespace Refractor
{
    internal class StatusManager : IStatusManager
    {
        public StatusManager(WindowManager windowManager, StatusStrip statusStrip)
        {
            _windowManager = windowManager;
            _statusStrip = statusStrip;

            _leftLabel = new ToolStripStatusLabel();
            _leftLabel.Alignment = ToolStripItemAlignment.Right;

            _statusStrip.Items.Add(_leftLabel);
        }

        public void SetLeftCaption(string text)
        {
            _leftLabel.Text = text;
        }

        public void Refresh()
        {
            _statusStrip.Refresh();
        }


        private WindowManager _windowManager;
        private StatusStrip _statusStrip;
        private ToolStripStatusLabel _leftLabel;
        private Dictionary<BackgroundWorker, ToolStripProgressBar> _progressBars = new Dictionary<BackgroundWorker, ToolStripProgressBar>();
    }

}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
United Kingdom United Kingdom
hughdoar@hotmail.com

Comments and Discussions