using System;
using System.Collections;
using Ironring.MMC.Core;
using Ironring.MMC.Nodes;
using Ironring.MMC.PropertyPages;
namespace MMCTest2{
/// <summary>
/// Summary description for MyDragDropNode.
/// </summary>
public class MyDragDropNode : BaseNode
{
public MyDragDropNode(SnapinBase snapin, String displayName, String closedIco, String openIco) : base(snapin, displayName, closedIco, openIco)
{
this.MultiSelectMode = true;
this.Cutable = true;
this.Pasteable = true;
}
public override string ResultViewSmallImage
{
get
{
return "MMCTest2.images.snapin.Ico";
}
}
public override string ResultViewLargeImage
{
get
{
return "MMCTest2.images.snapin.Ico";
}
}
public override ArrayList PropertyPages
{
get
{
ArrayList pages = new ArrayList();
pages.Add(new PropertyPage("PropertyPage", typeof(MyPropertyPage), this));
return pages;
}
}
}
}
|