Initial Commit
BIN
Resources/CopyScreenshotIcon.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
Resources/D3-icon-white.ico
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
Resources/D3-icon.ico
Normal file
|
After Width: | Height: | Size: 4.2 KiB |
41
Resources/D3IconHelper.cs
Normal file
@@ -0,0 +1,41 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Reflection;
|
||||
|
||||
namespace Microsoft.Research.DynamicDataDisplay
|
||||
{
|
||||
public static class D3IconHelper
|
||||
{
|
||||
private static BitmapFrame icon = null;
|
||||
public static BitmapFrame DynamicDataDisplayIcon
|
||||
{
|
||||
get
|
||||
{
|
||||
if (icon == null)
|
||||
{
|
||||
Assembly currentAssembly = typeof(D3IconHelper).Assembly;
|
||||
icon = BitmapFrame.Create(currentAssembly.GetManifestResourceStream("Microsoft.Research.DynamicDataDisplay.Resources.D3-icon.ico"));
|
||||
}
|
||||
return icon;
|
||||
}
|
||||
}
|
||||
|
||||
private static BitmapFrame whiteIcon = null;
|
||||
public static BitmapFrame DynamicDataDisplayWhiteIcon
|
||||
{
|
||||
get
|
||||
{
|
||||
if (whiteIcon == null)
|
||||
{
|
||||
Assembly currentAssembly = typeof(D3IconHelper).Assembly;
|
||||
whiteIcon = BitmapFrame.Create(currentAssembly.GetManifestResourceStream("Microsoft.Research.DynamicDataDisplay.Resources.D3-icon-white.ico"));
|
||||
}
|
||||
|
||||
return whiteIcon;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
Resources/FitToViewIcon.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
Resources/HelpIcon.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
Resources/SaveIcon.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
Resources/Toolbox/ChartPlotter.Icon.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |