Click here to Skip to main content
15,881,600 members
Articles / Desktop Programming / WPF

A Template For Using Datagrid in Monitoring UI

Rate me:
Please Sign up or sign in to vote.
4.67/5 (3 votes)
19 Mar 2016CPOL3 min read 18.4K   359   5   4
Here is a template or pattern for using datagrid in building monitoring UI for simulations and tabulated data presentations.

Introduction

One of the most common uses of datagrid is monitoring. Such monitoring screens are often needed to track scheduled jobs, view simulation results, analyze tabulated data like stocks, etc. Although there are other possible ways, I find this approach good and hence thought of sharing it.

Using datagrid in multithreaded environment is tricky. Let us iterate over the problems first.

  1. There will be a background thread to process data and based on the result of this processing, the data grid will be updated.
  2. UI controls in WPF can be updated by UI thread only.
  3. There can be more than one UI control which will work together to achieve the overall functionality (Progress bar, buttons, etc.). Coders often make a mistake of passing control reference in an insecure way.
  4. The source of data to which the datagrid will be bound should not be modifiable by any other class.

The Template

I am not a big fan of datatable and dataset as they don’t provide strong type checking. I prefer binding to datamodel objects. Here is a rough UML diagram to get started.

Uml diagram

Here, we start defining all components one by one.

Define DataModel

Create a data holder class as data model. To make it auto updatable, it has to implement INotifyPropertyChanged. Here is a sample implementation.

C#
public class NetworkDetails : INotifyPropertyChanged
{
    public string IpAddress { get; set; }       

    private bool m_IsMonitoring = false;

    public bool IsMonitoring
    {
        get { return m_IsMonitoring; }
        set
        {
            if (m_IsMonitoring == value)
                return;

            m_IsMonitoring = value;

            OnPropertyChanged("IsMonitoring");
        }
    }

    private int m_LoadFactor = 0;

    public int LoadFactor
    {
        get { return m_LoadFactor; }
        set
        {

            if (m_LoadFactor == value)
                return;

            m_LoadFactor = value;

            OnPropertyChanged("LoadFactor");
        }
    }

    public event PropertyChangedEventHandler PropertyChanged;

    protected void OnPropertyChanged(string property)
    {
        if (PropertyChanged != null)
        {
            PropertyChanged(this, new PropertyChangedEventArgs(property));
        }
    }
}

Define GridViewManager

This class will encapsulate the overall grid operations and coordinate with other controls. Some common operations carried out by this class will be:

  1. Manage background worker (start, stop, consume events)
  2. Launch data processing operations
  3. Update processed data into datamodel and since data model is implementing INotifyPropertyChanged, the changes will be reflected back in datagrid.
  4. Update other UI controls like progress bar or buttons.
C#
public class GridViewManager
{
    public ObservableCollection<NetworkDetails> lstNetworkDetails = 
				new ObservableCollection<NetworkDetails>();
    BackgroundWorker m_bgworker = new BackgroundWorker();          
    MainWindow.GridViewManagerContext m_context = null;
    public GridViewManager(MainWindow.GridViewManagerContext sgmc)
    {
        m_context = sgmc;
        m_bgworker.WorkerReportsProgress = true;
        m_bgworker.DoWork += worker_DoWork;
        m_bgworker.RunWorkerCompleted += bgworker_RunWorkerCompleted;
        m_bgworker.ProgressChanged += bgworker_ProgressChanged;
    }

    void bgworker_ProgressChanged(object sender, ProgressChangedEventArgs e)
    { … }

    void bgworker_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
    { … }

    void worker_DoWork(object sender, DoWorkEventArgs e)
    { … }

    public void Start()
    { … }      

    public void Stop()
    { … }
}

Control the Creation of GridViewManager

The GridViewManager class holds the collection which will be bound to itemsource of gridview. It is basically a subordinate class of main window and it is going to heavily use other WPF controls as well to achieve overall functionality. This class must be used within the vicinity of UIThread. It should ideally be a nested class. However, that can clutter the code too much. If we can restrict the instantiation of gridviewmanager class to main window, then it will solve the problem. Had it been C++ , we could have leveraged friend functions. However, in C#, we can use some alternative mechanism to limit the instantiation. Here is how you can achieve the same:

  1. Create another class to hold all UI Controls together. Let's call it GridViewManagerContext.
  2. Define only one constructor in GridViewManager which expects an object of GridViewManagerContext. With this GridViewManager can only be created with GridViewManagerContext object.
  3. Make the constructor private for GridViewManagerContext. That way, it cannot be instantiated by anyone.
  4. Define a nested private interface in Main Window object for creating instance of GridViewManagerContext.
  5. Create nested factory class inside GridViewManager to create instance of GridViewManagerContext. Implement the nested private interface explicitly in the factory class.
  6. What’s the use of this jugglery? You will realize that now GridViewManager class can only be instantiated by MainWindow object.

There may be other ways to achieve code safety, however, I find this one to be simpler. Here is a sample code which is trimmed to clarity. Please note that these are nested classes in parent window object.

C#
private interface IPrivateFactory
{
    GridViewManagerContext CreateInstance();
}

public sealed class GridViewManagerContext
{   
    private GridViewManagerContext()
    { … }

    public class GridViewManagerContextFactory : IPrivateFactory
    {
        GridViewManagerContext IPrivateFactory.CreateInstance()
        {
            return new GridViewManagerContext();
        }
    }
}

//Then the constructor of parent window can hold this code.
public MainWindow()
{
    InitializeComponent();
    IPrivateFactory factory = new GridViewManagerContext.GridViewManagerContextFactory();
    GridViewManagerContext context = factory.CreateInstance();
    sgm = new GridViewManager(context);
    dgTest1.ItemsSource = sgm.lstNetworkDetails;
}

Refer to the attached zip file for complete code clarity.

Points of Interest

I have used this template in multiple projects and found this is a simplest one to follow. There are other alternatives, but every one has some loopholes. The handling of controls in a separate class should be done with care, that is where most of the code fails.

License

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



Comments and Discussions

 
QuestionWhy the nested class ? Pin
Shailendra Bhardwaj22-Dec-16 4:33
Shailendra Bhardwaj22-Dec-16 4:33 
AnswerRe: Why the nested class ? Pin
amar nath chatterjee27-Dec-16 21:23
amar nath chatterjee27-Dec-16 21:23 
Questionnested class in parent window Pin
Prasun Hazra 6-Oct-16 21:14
Prasun Hazra 6-Oct-16 21:14 
QuestionDiagramm not shown Pin
Nelek20-Mar-16 7:45
protectorNelek20-Mar-16 7:45 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.