├── .gitattributes ├── .gitignore ├── CreateDateBase.SQL ├── CreateDepartmentTable.SQL ├── CreateEmployeeTable ├── CreateNotificationTable ├── README.md ├── 人脸识别考勤系统.sln └── 人脸识别考勤系统 ├── 20190516104955237_easyicon_net_128.ico ├── App.config ├── App.xaml ├── App.xaml.cs ├── BLL ├── DepartmentBLL.cs ├── EmployeeBLL.cs ├── FaceBLL.cs └── NotificationBLL.cs ├── Converter ├── BoolToSexStringConverter.cs ├── BoolToVisibilityConverter.cs ├── ComboxEventArgsConverter.cs ├── DataGridWidthConverter.cs ├── IntToRedColorConverter.cs ├── MyStringFormat.cs └── TextBoxEventArgsConverter.cs ├── DAL ├── DepartmentDal.cs ├── EmployeeDal.cs ├── FaceDAL.cs └── NotificationDal.cs ├── Helper ├── ConfigHelper.cs ├── ImageHelper.cs ├── JsonHelper.cs ├── MsgHelper.cs ├── NetHelper.cs └── SQLHelper.cs ├── Icons ├── admin.png ├── delete.png ├── departmentLogo.png ├── icon.jpg ├── logo.jpg ├── renlianjiance.png ├── timg[1].jpg ├── tongzhi.png ├── touxiang.png ├── tuichu1.png ├── tuichu2.png ├── tuichu3.png └── user.png ├── Interface ├── ClientManageInterface.cs ├── DepartmentInterface.cs └── EmployeeInterface.cs ├── Model ├── BaiduUser.cs ├── ClientConfig.cs ├── Department.cs ├── Employee.cs ├── Notification.cs ├── Rank.cs └── Weather.cs ├── Pages ├── ManagePage │ ├── ClientConfigManagePage.xaml │ ├── ClientConfigManagePage.xaml.cs │ ├── DepartmentManagePage.xaml │ ├── DepartmentManagePage.xaml.cs │ ├── EmployeeManagePage.xaml │ ├── EmployeeManagePage.xaml.cs │ ├── NotificationManagePage.xaml │ └── NotificationManagePage.xaml.cs ├── NotificationDisplayWindow.xaml ├── NotificationDisplayWindow.xaml.cs ├── RankPage.xaml ├── RankPage.xaml.cs ├── WeatherAndNotifyWindow.xaml └── WeatherAndNotifyWindow.xaml.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── View ├── AddView │ ├── AddDepartmentWindow.xaml │ ├── AddDepartmentWindow.xaml.cs │ ├── AddEmployeeWindow.xaml │ ├── AddEmployeeWindow.xaml.cs │ ├── PublishNewNotifyWindow.xaml │ └── PublishNewNotifyWindow.xaml.cs ├── MainAdminWindow.xaml ├── MainAdminWindow.xaml.cs ├── MainMenu.xaml ├── MainMenu.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── RegistFacesWindow.xaml ├── RegistFacesWindow.xaml.cs ├── SignFacesWindow.xaml └── SignFacesWindow.xaml.cs ├── ViewModel ├── ClientConfigViewModel.cs ├── DepartmentInfoViewModel.cs ├── DepartmentManageViewModel.cs ├── EmployeeInfoViewModel.cs ├── EmployeeManageViewModel.cs ├── MainViewModel.cs ├── NotificationInfoViewModel.cs ├── NotificationViewModel.cs ├── RankViewModel.cs ├── RegistFacesViewModel.cs └── ViewModelLocator.cs ├── bitbug_favicon.ico ├── packages.config └── 人脸识别考勤系统.csproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/.gitignore -------------------------------------------------------------------------------- /CreateDateBase.SQL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/CreateDateBase.SQL -------------------------------------------------------------------------------- /CreateDepartmentTable.SQL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/CreateDepartmentTable.SQL -------------------------------------------------------------------------------- /CreateEmployeeTable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/CreateEmployeeTable -------------------------------------------------------------------------------- /CreateNotificationTable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/CreateNotificationTable -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/README.md -------------------------------------------------------------------------------- /人脸识别考勤系统.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统.sln -------------------------------------------------------------------------------- /人脸识别考勤系统/20190516104955237_easyicon_net_128.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/20190516104955237_easyicon_net_128.ico -------------------------------------------------------------------------------- /人脸识别考勤系统/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/App.config -------------------------------------------------------------------------------- /人脸识别考勤系统/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/App.xaml -------------------------------------------------------------------------------- /人脸识别考勤系统/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/App.xaml.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/BLL/DepartmentBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/BLL/DepartmentBLL.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/BLL/EmployeeBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/BLL/EmployeeBLL.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/BLL/FaceBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/BLL/FaceBLL.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/BLL/NotificationBLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/BLL/NotificationBLL.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/Converter/BoolToSexStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Converter/BoolToSexStringConverter.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/Converter/BoolToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Converter/BoolToVisibilityConverter.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/Converter/ComboxEventArgsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Converter/ComboxEventArgsConverter.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/Converter/DataGridWidthConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Converter/DataGridWidthConverter.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/Converter/IntToRedColorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Converter/IntToRedColorConverter.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/Converter/MyStringFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Converter/MyStringFormat.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/Converter/TextBoxEventArgsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Converter/TextBoxEventArgsConverter.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/DAL/DepartmentDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/DAL/DepartmentDal.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/DAL/EmployeeDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/DAL/EmployeeDal.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/DAL/FaceDAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/DAL/FaceDAL.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/DAL/NotificationDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/DAL/NotificationDal.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/Helper/ConfigHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Helper/ConfigHelper.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/Helper/ImageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Helper/ImageHelper.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/Helper/JsonHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Helper/JsonHelper.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/Helper/MsgHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Helper/MsgHelper.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/Helper/NetHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Helper/NetHelper.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/Helper/SQLHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Helper/SQLHelper.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/Icons/admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Icons/admin.png -------------------------------------------------------------------------------- /人脸识别考勤系统/Icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Icons/delete.png -------------------------------------------------------------------------------- /人脸识别考勤系统/Icons/departmentLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Icons/departmentLogo.png -------------------------------------------------------------------------------- /人脸识别考勤系统/Icons/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Icons/icon.jpg -------------------------------------------------------------------------------- /人脸识别考勤系统/Icons/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Icons/logo.jpg -------------------------------------------------------------------------------- /人脸识别考勤系统/Icons/renlianjiance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Icons/renlianjiance.png -------------------------------------------------------------------------------- /人脸识别考勤系统/Icons/timg[1].jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Icons/timg[1].jpg -------------------------------------------------------------------------------- /人脸识别考勤系统/Icons/tongzhi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Icons/tongzhi.png -------------------------------------------------------------------------------- /人脸识别考勤系统/Icons/touxiang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Icons/touxiang.png -------------------------------------------------------------------------------- /人脸识别考勤系统/Icons/tuichu1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Icons/tuichu1.png -------------------------------------------------------------------------------- /人脸识别考勤系统/Icons/tuichu2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Icons/tuichu2.png -------------------------------------------------------------------------------- /人脸识别考勤系统/Icons/tuichu3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Icons/tuichu3.png -------------------------------------------------------------------------------- /人脸识别考勤系统/Icons/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Icons/user.png -------------------------------------------------------------------------------- /人脸识别考勤系统/Interface/ClientManageInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Interface/ClientManageInterface.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/Interface/DepartmentInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Interface/DepartmentInterface.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/Interface/EmployeeInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Interface/EmployeeInterface.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/Model/BaiduUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Model/BaiduUser.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/Model/ClientConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Model/ClientConfig.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/Model/Department.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Model/Department.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/Model/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Model/Employee.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/Model/Notification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Model/Notification.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/Model/Rank.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Model/Rank.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/Model/Weather.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Model/Weather.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/Pages/ManagePage/ClientConfigManagePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Pages/ManagePage/ClientConfigManagePage.xaml -------------------------------------------------------------------------------- /人脸识别考勤系统/Pages/ManagePage/ClientConfigManagePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Pages/ManagePage/ClientConfigManagePage.xaml.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/Pages/ManagePage/DepartmentManagePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Pages/ManagePage/DepartmentManagePage.xaml -------------------------------------------------------------------------------- /人脸识别考勤系统/Pages/ManagePage/DepartmentManagePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Pages/ManagePage/DepartmentManagePage.xaml.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/Pages/ManagePage/EmployeeManagePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Pages/ManagePage/EmployeeManagePage.xaml -------------------------------------------------------------------------------- /人脸识别考勤系统/Pages/ManagePage/EmployeeManagePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Pages/ManagePage/EmployeeManagePage.xaml.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/Pages/ManagePage/NotificationManagePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Pages/ManagePage/NotificationManagePage.xaml -------------------------------------------------------------------------------- /人脸识别考勤系统/Pages/ManagePage/NotificationManagePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Pages/ManagePage/NotificationManagePage.xaml.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/Pages/NotificationDisplayWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Pages/NotificationDisplayWindow.xaml -------------------------------------------------------------------------------- /人脸识别考勤系统/Pages/NotificationDisplayWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Pages/NotificationDisplayWindow.xaml.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/Pages/RankPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Pages/RankPage.xaml -------------------------------------------------------------------------------- /人脸识别考勤系统/Pages/RankPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Pages/RankPage.xaml.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/Pages/WeatherAndNotifyWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Pages/WeatherAndNotifyWindow.xaml -------------------------------------------------------------------------------- /人脸识别考勤系统/Pages/WeatherAndNotifyWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Pages/WeatherAndNotifyWindow.xaml.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Properties/Resources.resx -------------------------------------------------------------------------------- /人脸识别考勤系统/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/Properties/Settings.settings -------------------------------------------------------------------------------- /人脸识别考勤系统/View/AddView/AddDepartmentWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/View/AddView/AddDepartmentWindow.xaml -------------------------------------------------------------------------------- /人脸识别考勤系统/View/AddView/AddDepartmentWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/View/AddView/AddDepartmentWindow.xaml.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/View/AddView/AddEmployeeWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/View/AddView/AddEmployeeWindow.xaml -------------------------------------------------------------------------------- /人脸识别考勤系统/View/AddView/AddEmployeeWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/View/AddView/AddEmployeeWindow.xaml.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/View/AddView/PublishNewNotifyWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/View/AddView/PublishNewNotifyWindow.xaml -------------------------------------------------------------------------------- /人脸识别考勤系统/View/AddView/PublishNewNotifyWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/View/AddView/PublishNewNotifyWindow.xaml.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/View/MainAdminWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/View/MainAdminWindow.xaml -------------------------------------------------------------------------------- /人脸识别考勤系统/View/MainAdminWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/View/MainAdminWindow.xaml.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/View/MainMenu.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/View/MainMenu.xaml -------------------------------------------------------------------------------- /人脸识别考勤系统/View/MainMenu.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/View/MainMenu.xaml.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/View/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/View/MainWindow.xaml -------------------------------------------------------------------------------- /人脸识别考勤系统/View/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/View/MainWindow.xaml.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/View/RegistFacesWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/View/RegistFacesWindow.xaml -------------------------------------------------------------------------------- /人脸识别考勤系统/View/RegistFacesWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/View/RegistFacesWindow.xaml.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/View/SignFacesWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/View/SignFacesWindow.xaml -------------------------------------------------------------------------------- /人脸识别考勤系统/View/SignFacesWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/View/SignFacesWindow.xaml.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/ViewModel/ClientConfigViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/ViewModel/ClientConfigViewModel.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/ViewModel/DepartmentInfoViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/ViewModel/DepartmentInfoViewModel.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/ViewModel/DepartmentManageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/ViewModel/DepartmentManageViewModel.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/ViewModel/EmployeeInfoViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/ViewModel/EmployeeInfoViewModel.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/ViewModel/EmployeeManageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/ViewModel/EmployeeManageViewModel.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/ViewModel/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/ViewModel/MainViewModel.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/ViewModel/NotificationInfoViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/ViewModel/NotificationInfoViewModel.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/ViewModel/NotificationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/ViewModel/NotificationViewModel.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/ViewModel/RankViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/ViewModel/RankViewModel.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/ViewModel/RegistFacesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/ViewModel/RegistFacesViewModel.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/ViewModel/ViewModelLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/ViewModel/ViewModelLocator.cs -------------------------------------------------------------------------------- /人脸识别考勤系统/bitbug_favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/bitbug_favicon.ico -------------------------------------------------------------------------------- /人脸识别考勤系统/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/packages.config -------------------------------------------------------------------------------- /人脸识别考勤系统/人脸识别考勤系统.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigHeadDev/Face_AttandanceMS/HEAD/人脸识别考勤系统/人脸识别考勤系统.csproj --------------------------------------------------------------------------------