Added taskbar icon and standardized locations of images

This commit is contained in:
LukePulverenti Luke Pulverenti luke pulverenti
2012-09-02 16:24:10 -04:00
parent 3c47375229
commit e4b0eb5779
12 changed files with 22 additions and 24 deletions

View File

@@ -68,18 +68,5 @@ namespace MediaBrowser.Common.UI
Kernel.Dispose();
}
public BitmapImage GetLogoImage()
{
BitmapImage bitmap = new BitmapImage();
bitmap.CacheOption = BitmapCacheOption.Default;
bitmap.BeginInit();
bitmap.StreamSource = Assembly.GetExecutingAssembly().GetManifestResourceStream("MediaBrowser.Common.Resources.mblogo.png");
bitmap.EndInit();
return bitmap;
}
}
}