Advertisement
Brandan

Constant

Dec 7th, 2012
438
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 3.39 KB | None | 0 0
  1.     ' ECW Launcher Constants
  2.     Public Const_Form_Text_Color = ColorTranslator.FromHtml("#000000")                ' White
  3.     Public Const_Selected_Tab_Color As Color = ColorTranslator.FromHtml("#00008B")    ' Dark Blue
  4.     Public Const_selected_button_color As Color = ColorTranslator.FromHtml("#00008B") ' Dark Blue
  5.     Public Const_Default_Button_Colors As Color = Color.Transparent                   ' Transparent (with no image)
  6.     Public Const_Default_Tab_Color As Color = Color.Transparent                       ' Transparent (with no image)
  7.     Public Const_Default_Form_Color As Color = Nothing                                ' Not used / Furture           (Nothing)
  8.     Public Const_Grid_View_Border_Color As Color = ColorTranslator.FromHtml("#FFD700") ' Change Gridview Border Color (Gold)
  9.     Public Const_Global_Background_Color As Color = ColorTranslator.FromHtml("#FFFFFF") ' Dark Blue
  10.  
  11.     ' Settings
  12.     Public Const_No_Border As Integer = 1                                             ' Disable Windows Generated Border
  13.     Public Const_Window_Drag_Move As Integer = 1                                      ' Allow Mouse to click and drag window around
  14.     Public Const_Grid_View_Enabled As Integer = 1                                     ' Enable / Disable Grid View   (Enabled)
  15.     Public Const_Background_Button_Enabled As Integer = 1
  16.     Public Const_Global_Backgrounds As Integer = 1
  17.     Public Const_Backgrounds_Enabled As Integer = 1
  18.     Public Const_Background_Tab_Heading_Enabled As Integer = 0 ' Default 0
  19.     Public Const_Grid_View_Borders As Integer = 1
  20.  
  21.     Public Const_Button_Text_Tab_1 As String = "Home"
  22.     Public Const_Button_Text_Tab_2 As String = "Available Servers"
  23.     Public Const_Button_Text_Tab_3 As String = "Ladder"
  24.     Public Const_Button_Text_Tab_4 As String = "My Account"
  25.     Public Const_Button_Text_Tab_5 As String = "Chat / Help"
  26.     Public Const_Button_Text_Tab_6 As String = "Options"
  27.     Public Const_Button_Text_Home As String = "G"
  28.  
  29.     Public Const_Default_Theme_Path As String = "/Data/ECW Launcher/Themes"
  30.  
  31.     ' BACKGROUND IMAGES
  32.     Public Const_Grid_View_Background As Image = Nothing
  33.  
  34.     Public Const_Background_Tab_1 As Image = Nothing
  35.     Public Const_Background_Tab_2 As Image = Nothing
  36.     Public Const_Background_Tab_3 As Image = Nothing
  37.     Public Const_Background_Tab_4 As Image = Nothing
  38.     Public Const_Background_Tab_5 As Image = Nothing
  39.     Public Const_Background_Tab_6 As Image = Nothing
  40.  
  41.     Public Const_Background_Tab_Heading_1 As Image = Nothing
  42.     Public Const_Background_Tab_Heading_2 As Image = Nothing
  43.     Public Const_Background_Tab_Heading_3 As Image = Nothing
  44.     Public Const_Background_Tab_Heading_4 As Image = Nothing
  45.     Public Const_Background_Tab_Heading_5 As Image = Nothing
  46.     Public Const_Background_Tab_Heading_6 As Image = Nothing
  47.  
  48.     Public Const_Button_Image_Tab_1 As Image = Nothing
  49.     Public Const_Button_Image_Tab_2 As Image = Nothing
  50.     Public Const_Button_Image_Tab_3 As Image = Nothing
  51.     Public Const_Button_Image_Tab_4 As Image = Nothing
  52.     Public Const_Button_Image_Tab_5 As Image = Nothing
  53.     Public Const_Button_Image_Tab_6 As Image = Nothing
  54.     Public Const_Button_Image_Home As Image = Nothing
  55.  
  56.     Public Const_Background_Minimize As Image = Nothing
  57.     Public Const_Background_Maximize As Image = Nothing
  58.     Public Const_Background_Close As Image = Nothing
  59.     ' END Constants
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement