MenuElementHost.cs
526 字节
using Asa.FaceControl;
using Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms.Integration;
namespace SmartScan
{
internal class MenuElementHost : ElementHost, ISetMenu
{
FacePanel ISetMenu.GetPanel()
{
//throw new NotImplementedException();
return null;
}
void ISetMenu.Save()
{
//throw new NotImplementedException();
}
}
}