54 lines
1.4 KiB
C#
54 lines
1.4 KiB
C#
/******************************************************
|
|
* ROMVault2 is written by Gordon J. *
|
|
* Contact gordon@romvault.com *
|
|
* Copyright 2014 *
|
|
******************************************************/
|
|
|
|
using System.Collections.Generic;
|
|
using System.Drawing;
|
|
|
|
namespace ROMVault2
|
|
{
|
|
public static class rvImages
|
|
{
|
|
|
|
public static Bitmap GetBitmap(string bitmapName)
|
|
{
|
|
object bmObj = rvImages1.ResourceManager.GetObject(bitmapName);
|
|
|
|
Bitmap bm = null;
|
|
if (bmObj != null)
|
|
bm = (Bitmap)bmObj;
|
|
|
|
return bm;
|
|
}
|
|
|
|
public static Bitmap TickBoxDisabled
|
|
{
|
|
get { return GetBitmap("TickBoxDisabled"); }
|
|
}
|
|
public static Bitmap TickBoxTicked
|
|
{
|
|
get { return GetBitmap("TickBoxTicked"); }
|
|
}
|
|
public static Bitmap TickBoxUnTicked
|
|
{
|
|
get { return GetBitmap("TickBoxUnTicked"); }
|
|
}
|
|
|
|
public static Bitmap ExpandBoxMinus
|
|
{
|
|
get { return GetBitmap("ExpandBoxMinus"); }
|
|
}
|
|
public static Bitmap ExpandBoxPlus
|
|
{
|
|
get { return GetBitmap("ExpandBoxPlus"); }
|
|
}
|
|
|
|
public static Bitmap romvaultTZ
|
|
{
|
|
get { return GetBitmap("romvaultTZ"); }
|
|
}
|
|
}
|
|
}
|