mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
924 B
35 lines
924 B
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt) |
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt) |
|
|
|
using System; |
|
using System.Windows.Media; |
|
using System.Windows.Media.Imaging; |
|
|
|
namespace ICSharpCode.ILSpy.SharpDevelop |
|
{ |
|
static class Images |
|
{ |
|
static BitmapImage LoadBitmap(string name) |
|
{ |
|
try { |
|
BitmapImage image = new BitmapImage(new Uri("pack://application:,,,/ILSpy;component/Images/" + name + ".png")); |
|
if (image == null) |
|
return null; |
|
image.Freeze(); |
|
return image; |
|
} |
|
catch { |
|
// resource not found |
|
return null; |
|
} |
|
} |
|
|
|
public static readonly BitmapImage Breakpoint = LoadBitmap("Breakpoint"); |
|
public static readonly BitmapImage CurrentLine = LoadBitmap("CurrentLine"); |
|
|
|
public static ImageSource GetImage(string imageName) |
|
{ |
|
return LoadBitmap(imageName); |
|
} |
|
} |
|
}
|
|
|