25 lines
		
	
	
		
			513 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			513 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| /*
 | |
|  * Display timer
 | |
|  */
 | |
| using System.Collections.Generic;
 | |
| using System.ComponentModel;
 | |
| using System.Drawing;
 | |
| using System.Linq;
 | |
| using System.Text;
 | |
| 
 | |
| namespace Project
 | |
| {
 | |
|     public partial class fMain
 | |
|     {
 | |
|         private void tmDisplay_Tick(object sender, EventArgs e)
 | |
|         {
 | |
| 
 | |
|             sbBCD.BackColor = Pub.barcode.IsInit ? Color.Lime : Color.Red;
 | |
|             toolStripStatusLabel1.BackColor = ServerUtil.IsMailserver ? Color.Lime : Color.Gray;
 | |
| 
 | |
| 
 | |
|         }
 | |
|     }
 | |
| }
 | 
