using System;
using Ironring.MMC.Core;
using System.Runtime.InteropServices;
namespace MMCTest2{
/// <summary>
/// TestAbout is an About class derivative that provides MMC with info about our snapin.
/// It requires the AboutSnapin attribute to associate it with a snapin base class.
/// Provide enbedded image names to override the defaults.
/// </summary>
[
Guid("C3FE40F2-8B76-4820-91F6-38E81F659E0D"),
AboutSnapin(typeof(TestSnapinBase))
]
public class TestAbout : About
{
public TestAbout()
{
Description = "test snapin for mmclib2";
MainIconName = "MMCTest2.images.Closed.ico";
SmallOpenImageName = "MMCTest2.images.Main.ico";
SmallClosedImageName = "MMCTest2.images.Open.ico";
LargeImageName = "MMCTest2.images.snapin.Ico";
}
}
}
|