UsrLabeling.cs
674 字节
using Asa.FaceControl;
using Model;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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();
}
}
}