Very early SevenZip WIP version

This commit is contained in:
gjefferyes
2015-03-18 08:48:48 -05:00
parent 7830068257
commit 5d9d63fb08
55 changed files with 9683 additions and 3477 deletions

View File

@@ -11,10 +11,6 @@ namespace ROMVault2
{
public static class rvImages
{
private static List<string> names;
private static List<Bitmap> images;
public static Bitmap GetBitmap(string bitmapName)
{
object bmObj = rvImages1.ResourceManager.GetObject(bitmapName);
@@ -25,32 +21,5 @@ namespace ROMVault2
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"); }
}
}
}