WinForms Dashboard Monitoring with Animation

Introduction



In this article, we will see in detail how to develop a simple WinForms C# application to create a Dashboard Monitoring application for load monitoring the forms one-by-one, within a certain time frame, by user setting.

We can see monitoring systems everywhere where users can easily get quick information of current happenings, such as - in factories- the production results; in shopping malls- each floor shop and food court details; in hospitals- doctor’s availability and patients waiting list, on airports- departure and arrival flight details, at stations- train schedule information, etc.

Here, in this article, let’s see how to create a simple monitoring dashboard system to be displayed on any department with user settings.

Dashboard User Setting

In some cases, we need to display only certain forms in each floor. For example,  let’s consider factories with 4 floors and on each floor, there is a different kind of production. We will create different forms to display the production results of each floor. Now, admin needs to set each floor monitoring form display. For example - In the first floor Manager room, the  admin needs to display all floor monitoring results; that is, all monitoring forms need to be displayed within few seconds. On the second floor, the admin needs to set monitoring forms to display only the production result of second floor. For example - the monitoring form2, form4, form6 are related to 2nd floor and need to be display one by one.

To achieve this, first we create a Setting form. In this form, we can load the form display order and form display time from database or by storing in global class file. In this article, for demo purposes, I have used the setting to be stored in class file globally for each to display.

Floor 1 - Manager Room display

Here, from the below image, we can see that when we click Save 1 Button, the Dashboard Monitoring form will display the results of all floor results. Each monitoring form displays simple animation of each floor production result with Message display with animation.



Floor 2 - Production Room display

Here, from the below image, we can see that when we click Save 2 button, we load the Dashboard Monitoring Form 2,Form 4, and Form 6 showing the second floor production result. Each monitoring form displays simple animation with each floor production result, with Message display with animation.



Prerequisites

  • Visual Studio 2015: You can download it from here .

Code Part

Step 1 - Create C# Windows Forms Application

After installing Visual Studio 2015, from your desktop, go to Start >> Programs >> Visual Studio 2015 and click on "Visual Studio 2015".

Click New >> Project >> Visual C# >> Windows >> Windows Forms Application.
 
Enter your Project Name and click OK.



Step 2 - Create a GlobalVariable Class file

Next, we need to create a class for declaring all global variables, for storing all form monitoring display settings, and to set the time for each form display.



In this class, let's declare 3 variables, 2 of which will be arrays, to store the form displayindex, the time (in seconds) for each form display, and the total number of forms we are going to display in our Dashboard monitoring application.
  1. public class GlobalVariable  
  2.     {  
  3.         /// <summary>Index to Display all forms one by one</summary>   
  4.         public static int[] frmDisplayIndex = new int[6] { 1, 2, 3, 4, 5, 6 };  
  5.   
  6.         /// <summary>Timer Interval to display each Forms</summary>  
  7.         public static int[] interval = new int[6] { 4000, 5000, 6000, 5000, 6000, 7000 };  
  8.   
  9.         /// <summary>Maximum number of Forms to be displayed</summary>  
  10.         public static int formDisplayCount = 6;  
  11.     } 

Step 3 - Form Setting



We create a common function in form Setting as loadDashboard(). In each button click, we pass the number as floor number.

For example, on Save 1 and Save 2 buttons, we pass the numbers as 1, 2 to the loadDashboard() function.

  1. private void button1_Click(object sender, EventArgs e)  
  2.         {  
  3.             loadDashboard(1);  
  4.         }  
  5.   
  6.         private void button2_Click(object sender, EventArgs e)  
  7.         {  
  8.             loadDashboard(2);  
  9.         } 

Here, in loadDashboard() function, the admin can set each floor the form displays or not. Here in our dashboard, we have set to display 6 forms. In frmDisplayIndex array if in each floor the form needs to be displayed we use the formdisplayIndex .If the forms do not need to be displayed, then we hide the form to displayed. On button 1 click, we display all forms with each form display time. On button 2 click, we display only form 2, 4, and 6. We can see that index 1,3 and 5 are set to 0.

  1. private void loadDashboard(int formDispCount)  
  2.         {  
  3.             switch (formDispCount)  
  4.             {  
  5.                 case 1:  
  6.                     GlobalVariable.frmDisplayIndex = new int[6] { 1, 2, 3, 4, 5, 6 };  
  7.                     GlobalVariable.interval = new int[6] { 4000, 2000, 4000, 3000, 4000, 3000 };  
  8.                     break;  
  9.                 case 2:  
  10.                     GlobalVariable.frmDisplayIndex = new int[6] { 0, 2, 0, 4,0, 6 };  
  11.                     GlobalVariable.interval = new int[6] { 500, 1500, 200, 1200, 1000, 1000 };  
  12.                     break;  
  13.                 case 3:  
  14.                     GlobalVariable.frmDisplayIndex = new int[6] { 1, 0, 3, 4, 0, 6 };  
  15.                     GlobalVariable.interval = new int[6] { 1000, 2000, 3000, 2000, 1000, 2000 };  
  16.                     break;  
  17.                 case 4:  
  18.                     GlobalVariable.frmDisplayIndex = new int[6] { 1, 2, 0, 4, 5, 6 };  
  19.                     GlobalVariable.interval = new int[6] { 5000, 5000, 6000, 4000, 6000, 3000 };  
  20.                     break;  
  21.                 case 5:  
  22.                     GlobalVariable.frmDisplayIndex = new int[6] { 1, 2, 3, 4, 5, 0 };  
  23.                     GlobalVariable.interval = new int[6] { 3000, 5000, 6000, 2000, 6000, 3000 };  
  24.                     break;  
  25.                 case 6:  
  26.                     GlobalVariable.frmDisplayIndex = new int[6] { 1, 2, 3, 0, 5, 6 };  
  27.                     GlobalVariable.interval = new int[6] { 4000, 5000, 2000, 6000, 2000, 4000 };  
  28.                     break;  
  29.             }  
  30.             this.Opacity = 0;  
  31.             this.FormClosed += new FormClosedEventHandler(Form1_FormClosed);  
  32.             this.Close();  
  33.   
  34.         } 

Step 4 - Form Main

Now, we add our main form and name the form as frmMain.

Main form Load

In this form load, we add 2 timers for animation and displaying each monitoring form within time range.

  1. private void frmMain_Load(object sender, EventArgs e)  
  2.         {  
  3. //timer to display form one by one with in user defined time range  
  4.             tmrfrmDisplay.Enabled = true;  
  5.             tmrfrmDisplay.Tick += new EventHandler(tmrformDisplay_Tick);  
  6.             tmrfrmDisplay.Start();  
  7.   
  8. //timer to change the message color and move from left to right  
  9. timerAnimation.Tick += new EventHandler(timerAnimation_Tick);            timer.Enabled = true;  
  10.             timer.Interval = colorTimmer;  
  11.         } 

Timer Form Display

This is our main timer; here, we display each monitoring form depending on user setting. Each line is explained well, for easy understanding.

  1. //timer to display form one by one with in user defined time range  
  2.   private void tmrformDisplay_Tick(object sender, EventArgs e)  
  3.   {  
  4. //Here we check if the form index value has value as 0 then increase the count to display the next form.  
  5.     if (GlobalVariable.frmDisplayIndex[counter] == 0)  
  6.     {  
  7.         counter = counter + 1;  
  8.     }  
  9.             //Call the Formdisplay method to bind forms to the main form panel   
  10.             Formdisplay(GlobalVariable.frmDisplayIndex[counter]);  
  11.             //wait till the time for each form display.  
  12.     tmrfrmDisplay.Interval = GlobalVariable.interval[counter];  
  13.             //increament the coutner to load next form.  
  14.     counter++;  
  15.             //if the counter reach the total form displayed for this dashb oard application set the counter to 0 to load the monitoring form from first  
  16.     if (counter >= GlobalVariable.formDisplayCount)  
  17.     {  
  18.         counter = 0;  
  19.         tmrfrmDisplay.Enabled = true;  
  20.     }  

From the timer, we call the FormDisplay method to load each monitoring form after the time limit for each display. In this form, we set the main form opacity to .2 to start animation effect displaying while loading.

  1. private void Formdisplay(int formNumber)  
  2.         {  
  3.             pnlGrid.Controls.Clear();  
  4.             this.Opacity = .2;  
  5.   
  6.             switch (formNumber)  
  7.             {  
  8.                 case 1:  
  9.                     frmSave1 obj1 = new frmSave1();  
  10.   
  11.                     innerform = obj1;  
  12.                     obj1.TopLevel = false;  
  13.                     pnlGrid.Controls.Add(obj1);  
  14.                     obj1.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;  
  15.                     obj1.Dock = DockStyle.Fill;  
  16.                     obj1.Show();  
  17.                        
  18.                     break;  
  19.                 case 2:  
  20.                     frmSave2 obj2 = new frmSave2();  
  21.                     innerform = obj2;  
  22.                     obj2.TopLevel = false;  
  23.                     pnlGrid.Controls.Add(obj2);  
  24.                     obj2.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;  
  25.                     obj2.Dock = DockStyle.Fill;  
  26.                     obj2.Show();  
  27.                      
  28.                     break;  
  29.                 case 3:  
  30.                     frmSave3 obj3 = new frmSave3();  
  31.                     innerform = obj3;  
  32.                     obj3.TopLevel = false;  
  33.                     pnlGrid.Controls.Add(obj3);  
  34.                     obj3.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;  
  35.                     obj3.Dock = DockStyle.Fill;  
  36.                     obj3.Show();  
  37.                    
  38.                     break;  
  39.                 case 4:  
  40.                     frmSave4 obj4 = new frmSave4();  
  41.                     innerform = obj4;  
  42.                     obj4.TopLevel = false;  
  43.                     pnlGrid.Controls.Add(obj4);  
  44.                     obj4.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;  
  45.                     obj4.Dock = DockStyle.Fill;  
  46.                     obj4.Show();  
  47.                     
  48.                     break;  
  49.                 case 5:  
  50.                     frmSave5 obj5 = new frmSave5();  
  51.                     innerform = obj5;  
  52.                     obj5.TopLevel = false;  
  53.                     pnlGrid.Controls.Add(obj5);  
  54.                     obj5.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;  
  55.                     obj5.Dock = DockStyle.Fill;  
  56.                     obj5.Show();  
  57.                      
  58.                     break;  
  59.                 case 6:  
  60.                     frmSave6 obj6 = new frmSave6();  
  61.                     innerform = obj6;  
  62.                     obj6.TopLevel = false;  
  63.                     pnlGrid.Controls.Add(obj6);  
  64.                     obj6.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;  
  65.                     obj6.Dock = DockStyle.Fill;  
  66.                     obj6.Show();  
  67.                    
  68.                     break;  
  69.             }  
  70.              
  71.         } 

Timer for Message and main form Animation

In this timer, we display the main form with animation as increasing the opacity . We will be getting the result each time when the main form is loaded, with Fade In effect. In this timer we also randomly change the alert message font color and move the message from right to left continuously.

  1. //timer to display form one by one with in user defined time range  
  2.   private void tmrformDisplay_Tick(object sender, EventArgs e)  
  3.   {  
  4. //Here we check if the form index value has value as 0 then increase the count to display the next form.  
  5.     if (GlobalVariable.frmDisplayIndex[counter] == 0)  
  6.     {  
  7.         counter = counter + 1;  
  8.     }  
  9.             //Call the Formdisplay method to bind forms to the main form panel   
  10.             Formdisplay(GlobalVariable.frmDisplayIndex[counter]);  
  11.             //wait till the time for each form display.  
  12.     tmrfrmDisplay.Interval = GlobalVariable.interval[counter];  
  13.             //increament the coutner to load next form.  
  14.     counter++;  
  15.             //if the counter reach the total form displayed for this dashb oard application set the counter to 0 to load the monitoring form from first  
  16.     if (counter >= GlobalVariable.formDisplayCount)  
  17.     {  
  18.         counter = 0;  
  19.         tmrfrmDisplay.Enabled = true;  
  20.     }  

Next Recommended Readings