UsrLabeling.cs
487 字节
using Asa.FaceControl;
using Model;
using System.Windows.Forms;
namespace SmartScan
{
public partial class UsrLabeling : UserControl, ISetMenu
{
public UsrLabeling()
{
InitializeComponent();
}
public FacePanel GetPanel()
{
//throw new NotImplementedException();
return facePanel1;
}
public void Save()
{
//throw new NotImplementedException();
}
}
}