基本信息
源码名称:人脸识别示例源码(arcsoft)
源码大小:63.02M
文件格式:.zip
开发语言:C#
更新时间:2018-08-11
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Forms;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using ResearchProject.Visuals;
using ResearchProject.Util;
using ZC.Component;
using ResearchProject.Model;
using ResearchProject.Service;
using ResearchProject.Support;
using ZC.Support;
using ZC.Interface;
using ZC.MVVM;
using ZC.Message;
namespace ResearchProject
{
/// <summary>
/// MainWindow.xaml 的交互逻辑
/// </summary>
public partial class MainWindow : Window, IHost
{
public MainWindow()
{
InitializeComponent();
}
#region IHost
/// <summary>
/// 宿主信息
/// </summary>
public Window Host
{
get { return this; }
}
/// <summary>
/// 版本号
/// </summary>
public Version Version
{
get
{
return new Version(
System.Diagnostics.FileVersionInfo.GetVersionInfo(
System.Reflection.Assembly.GetEntryAssembly().Location).ProductVersion);
}
}
/// <summary>
/// 程序启动路径
/// </summary>
public string AppStartPath
{
get { return AppDomain.CurrentDomain.BaseDirectory; }
}
/// <summary>
/// 插件存储目录
/// </summary>
public string PluginPath
{
get { return "Plugins"; }
}
#endregion
#region Notifyicon
protected override void OnStateChanged(EventArgs e)
{
base.OnStateChanged(e);
if (this.WindowState == WindowState.Minimized)
{
this.ShowInTaskbar = false;
NotifyIconHelper.Notify("通知", "软件已最小化到托盘区");
}
}
protected override void OnClosed(EventArgs e)
{
base.OnClosed(e);
NotifyIconHelper.DeleteNotifyIcon();
}
#endregion
private void FaceDetection_Click(object sender, RoutedEventArgs e)
{
FaceDetection dlg = new FaceDetection();
dlg.Owner = this;
dlg.ShowDialog();
}
private void FaceRecogntion_Click(object sender, RoutedEventArgs e)
{
FaceRecogntion dlg = new FaceRecogntion();
dlg.Owner = this;
dlg.Show();
}
private void NetworkCheck_Click(object sender, RoutedEventArgs e)
{
int speed = NetSpeedCheck.PingCheck();
System.Windows.MessageBox.Show(string.Format("平均网速{0}ms", speed));
}
private void Unzip_Click(object sender, RoutedEventArgs e)
{
UnzipFile dlg = new UnzipFile();
dlg.Owner = this;
dlg.Show();
}
private void MD5_Click(object sender, RoutedEventArgs e)
{
MD5Encrypt dlg = new MD5Encrypt();
dlg.Owner = this;
dlg.Show();
}
private void Awesome_Click(object sender, RoutedEventArgs e)
{
Awesome dlg = new Awesome();
dlg.Owner = this;
dlg.ShowDialog();
}
private void DataGrid_Click(object sender, RoutedEventArgs e)
{
DataGridDlg dlg = new DataGridDlg();
dlg.Owner = this;
dlg.ShowDialog();
}
private void UserControl_Click(object sender, RoutedEventArgs e)
{
NormalWindow dlg = new NormalWindow();
dlg.Owner = this;
dlg.ShowDialog();
}
private void Print_Click(object sender, RoutedEventArgs e)
{
PrintPreviewDlg dlg = new PrintPreviewDlg();
dlg.Owner = this;
dlg.ShowDialog();
}
private void SqlConnect_Click(object sender, RoutedEventArgs e)
{
DataTableDlg dlg = new DataTableDlg();
dlg.Owner = this;
dlg.ShowDialog();
}
private void Browser_Click(object sender, RoutedEventArgs e)
{
BrowserDlg dlg = WindowHelper.GetOrShowWindow<BrowserDlg>(true);
}
private void Image_Click(object sender, RoutedEventArgs e)
{
ImageCopyDlg dlg = new ImageCopyDlg();
dlg.Owner = this;
dlg.ShowDialog();
}
private void PreviewContract_Click(object sender, RoutedEventArgs e)
{
PreviewContractDlg dlg = new PreviewContractDlg();
dlg.Owner = this;
dlg.ShowDialog();
}
private void RichTextBox_Click(object sender, RoutedEventArgs e)
{
RichTextBoxDlg dlg = new RichTextBoxDlg();
dlg.Owner = this;
dlg.ShowDialog();
}
private void GenerateWord_Click(object sender, RoutedEventArgs e)
{
GenerateWordDlg dlg = new GenerateWordDlg();
dlg.Owner = this;
dlg.ShowDialog();
}
private void MessageNotification_Click(object sender, RoutedEventArgs e)
{
Notification notice = new Notification()
{
Title = "TEST",
Message = "Hello World!"
};
MessageNotificationDlg.Show(notice);
}
private void ImageToPDF_Click(object sender, RoutedEventArgs e)
{
PDFFromImageDlg dlg = new PDFFromImageDlg();
dlg.Owner = this;
dlg.ShowDialog();
}
private void ScrollTextBlock_Click(object sender, RoutedEventArgs e)
{
ScrollTextBlockDlg dlg = new ScrollTextBlockDlg();
dlg.Owner = this;
dlg.ShowDialog();
}
private void LoadPlugin_Click(object sender, RoutedEventArgs e)
{
PluginHelper.PluginService = new PluginService(this);
bool isExist;
foreach (var item in PluginService.Plugins)
{
isExist = false;
foreach (System.Windows.Controls.MenuItem menu in this.pluginMenu.Items)
{
if (menu.Tag.Equals(item.Value.ModuleID))
{
isExist = true;
break;
}
}
if (isExist)
{
continue;
}
System.Windows.Controls.MenuItem m = new System.Windows.Controls.MenuItem() { Header = item.Value.PluginName };
m.Tag = item.Value.ModuleID;
m.Click -= NotifyMessage;
m.Click = NotifyMessage;
this.pluginMenu.Items.Add(m);
}
}
private void NotifyMessage(object sender, RoutedEventArgs e)
{
MessageService.Message.NotifyColleagues(MessageService.TEST);
}
}
}