Initial Commit

This commit is contained in:
2024-02-23 00:46:06 -05:00
commit 2bbedc0178
470 changed files with 46035 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

BIN
Resources/D3-icon-white.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

BIN
Resources/D3-icon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

41
Resources/D3IconHelper.cs Normal file
View 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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

BIN
Resources/HelpIcon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

BIN
Resources/SaveIcon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB