vote up 0 vote down star
1

I am adding a splash screen to a .NET compact application and am wondering if there's an elegant way to access the correct bitmap (based on screen resolution) for the splash screen.

e.g. My resource bitmap properties are named like this...

Splash640480

Splash480640

Splash480480

Splash320240

Splash240320

Splash240240

... etc

I tried making a generic dictionary but loading the generics library on a Pocket PC is quite slow - it took 6 seconds before the splash screen displayed vs 2 seconds when simply assigning a bitmap.

Would reflection be a fast option and if so, what's the best way to go about it?

flag

67% accept rate
1  
Loading a dictionary shouldn't take 6 seconds. Are you actually extracting all the different-sized bitmaps and putting them in your dictionary? That would explain the 6 seconds. – MusiGenesis Jul 12 at 13:05

2 Answers

vote up 5 vote down check

You can use the ResourceManager to get an object by it's name:
http://msdn.microsoft.com/en-us/library/system.resources.resourcemanager.getobject.aspx

After that cast it to a bitmap.

link|flag
vote up 2 vote down
System.Resources.ResourceManager resources = 
    new System.Resources.ResourceManager(typeof(YourObject));
Bitmap bmp = (System.Drawing.Bitmap)resources.GetObject("Splash640480");

Edit:

Removing the suggestion to downsize the image.

link|flag
1  
Not a good idea in Windows Mobile - Bitmap memory is allocated in dedicated video RAM, which is usually 4MB or even 1MB (instead of the 32MB theoretically available to each process). You generally don't want to create Bitmaps any larger than what you actually need. – MusiGenesis Jul 12 at 13:09
1  
Ha! good to know – Francis B. Jul 12 at 14:00

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.