Advertisement
Yassine_Abbani

Normal [Label], [Costume Control]

May 11th, 2018
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.22 KB | None | 0 0
  1.     #region Imports
  2.  
  3. using System;
  4. using System.Collections;
  5. using System.Collections.Generic;
  6. using System.ComponentModel;
  7. using System.Drawing;
  8. using System.Drawing.Drawing2D;
  9. using System.Drawing.Text;
  10. using System.Runtime.InteropServices;
  11. using System.Text;
  12. using System.Windows.Forms;
  13. using System.IO;
  14. using System.Drawing.Imaging;
  15.  
  16.  
  17. #endregion
  18.     #region Copyright & contact
  19. // Creator : Yassine Abbani
  20. // Facebook :  https://www.facebook.com/yassineabbani.user
  21. // Youtube  :  https://www.youtube.com/channel/UCqvOCRs3HWbPH4yuZuTx8mw
  22. // website  :  CheatEye
  23. // Pastebin  : https://pastebin.com/u/Yassine_Abbani
  24. #endregion
  25.     #region  Normal Label
  26.  
  27.     public class Ce_Flat_Label : Label
  28.     {
  29.  
  30.         public Ce_Flat_Label()
  31.         {
  32.             Font = new Font("Segoe UI", 9);
  33.             // explaine : my font are "Segoe UI" style
  34.             // change font with your style (Recommanded)
  35.             // label size is '9' change it (Recomanded)
  36.  
  37.             ForeColor = Color.FromArgb(116, 125, 132);
  38.             // change label backcolor with your own color (recomanded)
  39.  
  40.             BackColor = Color.Transparent;
  41.             // advice dont change this (important)
  42.         }
  43.     }
  44.  
  45.     #endregion
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement