Advertisement
Yassine_Abbani

Header [Label], [Costume Control]

May 22nd, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.38 KB | None | 0 0
  1.  
  2. #region Import
  3. using System;
  4. using System.Drawing;
  5. using System.Windows.Forms;
  6. #endregion
  7.  
  8.  
  9.  
  10. #region  Header Label
  11.  
  12. public class Ce_Flat_HeaderLabel : Label
  13. {
  14.  
  15.     public Ce_Flat_HeaderLabel()
  16.     {
  17.         Font = new Font("Segoe UI", 11, FontStyle.Bold);
  18.         ForeColor = Color.FromArgb(255, 255, 255);
  19.         BackColor = Color.Transparent;
  20.     }
  21. }
  22.  
  23. #endregion
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement