├── .gitignore ├── App.config ├── App.xaml ├── App.xaml.cs ├── Assets └── Icons │ └── Icons.xaml ├── Components ├── AddressUnit.xaml ├── AddressUnit.xaml.cs ├── TodoUnit.xaml └── TodoUnit.xaml.cs ├── License ├── LinkToDo.csproj ├── LinkToDo.sln ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Myscripts ├── MyEmail.cs ├── MyUtils.cs ├── MysqlBase.cs ├── QiniuBase.cs ├── TodoDataControl.cs ├── TodoInfo.cs ├── UserDataControl.cs └── UserInfo.cs ├── Pages ├── AddressUnitEdit.xaml ├── AddressUnitEdit.xaml.cs ├── AddressbookPage.xaml ├── AddressbookPage.xaml.cs ├── TodolistPage.xaml └── TodolistPage.xaml.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── README.md ├── Resources └── Icon0.ico ├── Styles └── MainStyle.xaml ├── Themes └── LightTheme.xaml └── packages.config /.gitignore: -------------------------------------------------------------------------------- 1 | packages 2 | bin 3 | .vs 4 | obj 5 | Myscripts/Settings.cs -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Star-tears/LinkToDo/HEAD/App.config -------------------------------------------------------------------------------- /App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Star-tears/LinkToDo/HEAD/App.xaml -------------------------------------------------------------------------------- /App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Star-tears/LinkToDo/HEAD/App.xaml.cs -------------------------------------------------------------------------------- /Assets/Icons/Icons.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Star-tears/LinkToDo/HEAD/Assets/Icons/Icons.xaml -------------------------------------------------------------------------------- /Components/AddressUnit.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Star-tears/LinkToDo/HEAD/Components/AddressUnit.xaml -------------------------------------------------------------------------------- /Components/AddressUnit.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Star-tears/LinkToDo/HEAD/Components/AddressUnit.xaml.cs -------------------------------------------------------------------------------- /Components/TodoUnit.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Star-tears/LinkToDo/HEAD/Components/TodoUnit.xaml -------------------------------------------------------------------------------- /Components/TodoUnit.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Star-tears/LinkToDo/HEAD/Components/TodoUnit.xaml.cs -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Star-tears/LinkToDo/HEAD/License -------------------------------------------------------------------------------- /LinkToDo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Star-tears/LinkToDo/HEAD/LinkToDo.csproj -------------------------------------------------------------------------------- /LinkToDo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Star-tears/LinkToDo/HEAD/LinkToDo.sln -------------------------------------------------------------------------------- /MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Star-tears/LinkToDo/HEAD/MainWindow.xaml -------------------------------------------------------------------------------- /MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Star-tears/LinkToDo/HEAD/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Myscripts/MyEmail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Star-tears/LinkToDo/HEAD/Myscripts/MyEmail.cs -------------------------------------------------------------------------------- /Myscripts/MyUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Star-tears/LinkToDo/HEAD/Myscripts/MyUtils.cs -------------------------------------------------------------------------------- /Myscripts/MysqlBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Star-tears/LinkToDo/HEAD/Myscripts/MysqlBase.cs -------------------------------------------------------------------------------- /Myscripts/QiniuBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Star-tears/LinkToDo/HEAD/Myscripts/QiniuBase.cs -------------------------------------------------------------------------------- /Myscripts/TodoDataControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Star-tears/LinkToDo/HEAD/Myscripts/TodoDataControl.cs -------------------------------------------------------------------------------- /Myscripts/TodoInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Star-tears/LinkToDo/HEAD/Myscripts/TodoInfo.cs -------------------------------------------------------------------------------- /Myscripts/UserDataControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Star-tears/LinkToDo/HEAD/Myscripts/UserDataControl.cs -------------------------------------------------------------------------------- /Myscripts/UserInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Star-tears/LinkToDo/HEAD/Myscripts/UserInfo.cs -------------------------------------------------------------------------------- /Pages/AddressUnitEdit.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Star-tears/LinkToDo/HEAD/Pages/AddressUnitEdit.xaml -------------------------------------------------------------------------------- /Pages/AddressUnitEdit.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Star-tears/LinkToDo/HEAD/Pages/AddressUnitEdit.xaml.cs -------------------------------------------------------------------------------- /Pages/AddressbookPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Star-tears/LinkToDo/HEAD/Pages/AddressbookPage.xaml -------------------------------------------------------------------------------- /Pages/AddressbookPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Star-tears/LinkToDo/HEAD/Pages/AddressbookPage.xaml.cs -------------------------------------------------------------------------------- /Pages/TodolistPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Star-tears/LinkToDo/HEAD/Pages/TodolistPage.xaml -------------------------------------------------------------------------------- /Pages/TodolistPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Star-tears/LinkToDo/HEAD/Pages/TodolistPage.xaml.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Star-tears/LinkToDo/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Star-tears/LinkToDo/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Star-tears/LinkToDo/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Star-tears/LinkToDo/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Star-tears/LinkToDo/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Star-tears/LinkToDo/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Icon0.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Star-tears/LinkToDo/HEAD/Resources/Icon0.ico -------------------------------------------------------------------------------- /Styles/MainStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Star-tears/LinkToDo/HEAD/Styles/MainStyle.xaml -------------------------------------------------------------------------------- /Themes/LightTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Star-tears/LinkToDo/HEAD/Themes/LightTheme.xaml -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Star-tears/LinkToDo/HEAD/packages.config --------------------------------------------------------------------------------