├── .gitignore ├── NetHelper ├── Common.cs ├── Helper.csproj ├── JsonHelper.cs ├── LogHelper.cs ├── NetHelper.cs ├── Properties │ └── AssemblyInfo.cs ├── ShowOperation.cs ├── XMLHelper.cs └── libs │ └── Newtonsoft.Json.dll ├── README.md ├── Update ├── App.config ├── App.xaml ├── App.xaml.cs ├── JsonHelper.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── NetHelper.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── README.md ├── UnZipClass.cs ├── Update.csproj ├── XMLHelper.cs └── libs │ ├── ICSharpCode.SharpZipLib.dll │ └── Newtonsoft.Json.dll ├── WorkTime ├── App.config ├── App.xaml ├── App.xaml.cs ├── BaseModel │ ├── ReturnData.cs │ ├── User.cs │ └── WorkTimeData.cs ├── Entity │ └── WorkTimeData_ViewData.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── README.md ├── StaticStat.cs ├── UserContorller │ ├── AddItem.xaml │ ├── AddItem.xaml.cs │ ├── Home.xaml │ └── Home.xaml.cs ├── VersionData.json ├── ViewModel │ ├── AddItemViewModel.cs │ ├── AnotherCommandImplementation.cs │ ├── AutoCommand.cs │ ├── BaseViewModel.cs │ ├── ContorllerItem.cs │ ├── HomeViewModel.cs │ ├── MainWindowViewModel.cs │ └── NotifyPropertyChangedExtension.cs ├── Windows │ ├── LoadingDialog.xaml │ ├── LoadingDialog.xaml.cs │ ├── LoginWindow.xaml │ ├── LoginWindow.xaml.cs │ ├── SampleMessageDialog.xaml │ ├── SampleMessageDialog.xaml.cs │ ├── UpdateTipsWindow.xaml │ └── UpdateTipsWindow.xaml.cs ├── WorkTime.csproj ├── demo │ ├── logindemo.gif │ └── 优化版WorkTimeManage1.0.gif ├── libs │ ├── Dragablz.dll │ ├── MahApps.Metro.dll │ ├── MaterialDesignColors.dll │ ├── MaterialDesignThemes.Wpf.dll │ ├── Newtonsoft.Json.dll │ └── System.Windows.Interactivity.dll └── logo.ico ├── WorkTimeManager.sln ├── WorkTimeTest ├── App.config ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── README.md └── WorkTimeTest.csproj ├── app.zip └── 定时任务 ├── App.config ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs ├── Settings.settings └── app.manifest ├── Resource1.Designer.cs ├── Resource1.resx ├── Resources └── logo.ico ├── bitbug_favicon.ico ├── logo.ico ├── tips_window ├── tips.xaml └── tips.xaml.cs └── 定时任务.csproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/.gitignore -------------------------------------------------------------------------------- /NetHelper/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/NetHelper/Common.cs -------------------------------------------------------------------------------- /NetHelper/Helper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/NetHelper/Helper.csproj -------------------------------------------------------------------------------- /NetHelper/JsonHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/NetHelper/JsonHelper.cs -------------------------------------------------------------------------------- /NetHelper/LogHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/NetHelper/LogHelper.cs -------------------------------------------------------------------------------- /NetHelper/NetHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/NetHelper/NetHelper.cs -------------------------------------------------------------------------------- /NetHelper/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/NetHelper/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /NetHelper/ShowOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/NetHelper/ShowOperation.cs -------------------------------------------------------------------------------- /NetHelper/XMLHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/NetHelper/XMLHelper.cs -------------------------------------------------------------------------------- /NetHelper/libs/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/NetHelper/libs/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/README.md -------------------------------------------------------------------------------- /Update/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/Update/App.config -------------------------------------------------------------------------------- /Update/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/Update/App.xaml -------------------------------------------------------------------------------- /Update/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/Update/App.xaml.cs -------------------------------------------------------------------------------- /Update/JsonHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/Update/JsonHelper.cs -------------------------------------------------------------------------------- /Update/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/Update/MainWindow.xaml -------------------------------------------------------------------------------- /Update/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/Update/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Update/NetHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/Update/NetHelper.cs -------------------------------------------------------------------------------- /Update/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/Update/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Update/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/Update/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Update/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/Update/Properties/Resources.resx -------------------------------------------------------------------------------- /Update/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/Update/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Update/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/Update/Properties/Settings.settings -------------------------------------------------------------------------------- /Update/README.md: -------------------------------------------------------------------------------- 1 | # 自动更新程序 -------------------------------------------------------------------------------- /Update/UnZipClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/Update/UnZipClass.cs -------------------------------------------------------------------------------- /Update/Update.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/Update/Update.csproj -------------------------------------------------------------------------------- /Update/XMLHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/Update/XMLHelper.cs -------------------------------------------------------------------------------- /Update/libs/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/Update/libs/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /Update/libs/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/Update/libs/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /WorkTime/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/App.config -------------------------------------------------------------------------------- /WorkTime/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/App.xaml -------------------------------------------------------------------------------- /WorkTime/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/App.xaml.cs -------------------------------------------------------------------------------- /WorkTime/BaseModel/ReturnData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/BaseModel/ReturnData.cs -------------------------------------------------------------------------------- /WorkTime/BaseModel/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/BaseModel/User.cs -------------------------------------------------------------------------------- /WorkTime/BaseModel/WorkTimeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/BaseModel/WorkTimeData.cs -------------------------------------------------------------------------------- /WorkTime/Entity/WorkTimeData_ViewData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/Entity/WorkTimeData_ViewData.cs -------------------------------------------------------------------------------- /WorkTime/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/MainWindow.xaml -------------------------------------------------------------------------------- /WorkTime/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WorkTime/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WorkTime/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WorkTime/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/Properties/Resources.resx -------------------------------------------------------------------------------- /WorkTime/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WorkTime/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/Properties/Settings.settings -------------------------------------------------------------------------------- /WorkTime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/README.md -------------------------------------------------------------------------------- /WorkTime/StaticStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/StaticStat.cs -------------------------------------------------------------------------------- /WorkTime/UserContorller/AddItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/UserContorller/AddItem.xaml -------------------------------------------------------------------------------- /WorkTime/UserContorller/AddItem.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/UserContorller/AddItem.xaml.cs -------------------------------------------------------------------------------- /WorkTime/UserContorller/Home.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/UserContorller/Home.xaml -------------------------------------------------------------------------------- /WorkTime/UserContorller/Home.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/UserContorller/Home.xaml.cs -------------------------------------------------------------------------------- /WorkTime/VersionData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/VersionData.json -------------------------------------------------------------------------------- /WorkTime/ViewModel/AddItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/ViewModel/AddItemViewModel.cs -------------------------------------------------------------------------------- /WorkTime/ViewModel/AnotherCommandImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/ViewModel/AnotherCommandImplementation.cs -------------------------------------------------------------------------------- /WorkTime/ViewModel/AutoCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/ViewModel/AutoCommand.cs -------------------------------------------------------------------------------- /WorkTime/ViewModel/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/ViewModel/BaseViewModel.cs -------------------------------------------------------------------------------- /WorkTime/ViewModel/ContorllerItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/ViewModel/ContorllerItem.cs -------------------------------------------------------------------------------- /WorkTime/ViewModel/HomeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/ViewModel/HomeViewModel.cs -------------------------------------------------------------------------------- /WorkTime/ViewModel/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/ViewModel/MainWindowViewModel.cs -------------------------------------------------------------------------------- /WorkTime/ViewModel/NotifyPropertyChangedExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/ViewModel/NotifyPropertyChangedExtension.cs -------------------------------------------------------------------------------- /WorkTime/Windows/LoadingDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/Windows/LoadingDialog.xaml -------------------------------------------------------------------------------- /WorkTime/Windows/LoadingDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/Windows/LoadingDialog.xaml.cs -------------------------------------------------------------------------------- /WorkTime/Windows/LoginWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/Windows/LoginWindow.xaml -------------------------------------------------------------------------------- /WorkTime/Windows/LoginWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/Windows/LoginWindow.xaml.cs -------------------------------------------------------------------------------- /WorkTime/Windows/SampleMessageDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/Windows/SampleMessageDialog.xaml -------------------------------------------------------------------------------- /WorkTime/Windows/SampleMessageDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/Windows/SampleMessageDialog.xaml.cs -------------------------------------------------------------------------------- /WorkTime/Windows/UpdateTipsWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/Windows/UpdateTipsWindow.xaml -------------------------------------------------------------------------------- /WorkTime/Windows/UpdateTipsWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/Windows/UpdateTipsWindow.xaml.cs -------------------------------------------------------------------------------- /WorkTime/WorkTime.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/WorkTime.csproj -------------------------------------------------------------------------------- /WorkTime/demo/logindemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/demo/logindemo.gif -------------------------------------------------------------------------------- /WorkTime/demo/优化版WorkTimeManage1.0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/demo/优化版WorkTimeManage1.0.gif -------------------------------------------------------------------------------- /WorkTime/libs/Dragablz.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/libs/Dragablz.dll -------------------------------------------------------------------------------- /WorkTime/libs/MahApps.Metro.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/libs/MahApps.Metro.dll -------------------------------------------------------------------------------- /WorkTime/libs/MaterialDesignColors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/libs/MaterialDesignColors.dll -------------------------------------------------------------------------------- /WorkTime/libs/MaterialDesignThemes.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/libs/MaterialDesignThemes.Wpf.dll -------------------------------------------------------------------------------- /WorkTime/libs/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/libs/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /WorkTime/libs/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/libs/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /WorkTime/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTime/logo.ico -------------------------------------------------------------------------------- /WorkTimeManager.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTimeManager.sln -------------------------------------------------------------------------------- /WorkTimeTest/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTimeTest/App.config -------------------------------------------------------------------------------- /WorkTimeTest/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTimeTest/App.xaml -------------------------------------------------------------------------------- /WorkTimeTest/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTimeTest/App.xaml.cs -------------------------------------------------------------------------------- /WorkTimeTest/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTimeTest/MainWindow.xaml -------------------------------------------------------------------------------- /WorkTimeTest/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTimeTest/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WorkTimeTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTimeTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WorkTimeTest/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTimeTest/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WorkTimeTest/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTimeTest/Properties/Resources.resx -------------------------------------------------------------------------------- /WorkTimeTest/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTimeTest/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WorkTimeTest/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTimeTest/Properties/Settings.settings -------------------------------------------------------------------------------- /WorkTimeTest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTimeTest/README.md -------------------------------------------------------------------------------- /WorkTimeTest/WorkTimeTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/WorkTimeTest/WorkTimeTest.csproj -------------------------------------------------------------------------------- /app.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/app.zip -------------------------------------------------------------------------------- /定时任务/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/定时任务/App.config -------------------------------------------------------------------------------- /定时任务/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/定时任务/App.xaml -------------------------------------------------------------------------------- /定时任务/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/定时任务/App.xaml.cs -------------------------------------------------------------------------------- /定时任务/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/定时任务/MainWindow.xaml -------------------------------------------------------------------------------- /定时任务/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/定时任务/MainWindow.xaml.cs -------------------------------------------------------------------------------- /定时任务/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/定时任务/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /定时任务/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/定时任务/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /定时任务/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/定时任务/Properties/Resources.resx -------------------------------------------------------------------------------- /定时任务/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/定时任务/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /定时任务/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/定时任务/Properties/Settings.settings -------------------------------------------------------------------------------- /定时任务/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/定时任务/Properties/app.manifest -------------------------------------------------------------------------------- /定时任务/Resource1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/定时任务/Resource1.Designer.cs -------------------------------------------------------------------------------- /定时任务/Resource1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/定时任务/Resource1.resx -------------------------------------------------------------------------------- /定时任务/Resources/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/定时任务/Resources/logo.ico -------------------------------------------------------------------------------- /定时任务/bitbug_favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/定时任务/bitbug_favicon.ico -------------------------------------------------------------------------------- /定时任务/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/定时任务/logo.ico -------------------------------------------------------------------------------- /定时任务/tips_window/tips.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/定时任务/tips_window/tips.xaml -------------------------------------------------------------------------------- /定时任务/tips_window/tips.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/定时任务/tips_window/tips.xaml.cs -------------------------------------------------------------------------------- /定时任务/定时任务.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d100000/worktimemanage/HEAD/定时任务/定时任务.csproj --------------------------------------------------------------------------------