├── .gitattributes ├── .gitignore ├── LICENSE ├── OpenURL ├── App.config ├── OpenURL.csproj ├── Program.cs └── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── README.md ├── TileBeautify.sln └── TileBeautify ├── App.config ├── ElevatedDragDropManager.cs ├── FormAboutMe.Designer.cs ├── FormAboutMe.cs ├── FormAboutMe.resx ├── FormEditConfig.Designer.cs ├── FormEditConfig.cs ├── FormEditConfig.resx ├── FormEditPicture.Designer.cs ├── FormEditPicture.cs ├── FormEditPicture.resx ├── FormInputBox.Designer.cs ├── FormInputBox.cs ├── FormInputBox.resx ├── FormMyMessageBox.Designer.cs ├── FormMyMessageBox.cs ├── FormMyMessageBox.resx ├── FormPickColor.Designer.cs ├── FormPickColor.cs ├── FormPickColor.resx ├── FormReplaceIcon.Designer.cs ├── FormReplaceIcon.cs ├── FormReplaceIcon.resx ├── PartImage.cs ├── PickColor.cur ├── PictureZoom.cs ├── PrimaryScreen.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs ├── Settings.settings └── app.manifest ├── RepaintGroupBox.cs ├── ReplaceCursor.cs ├── ResizeFont.cs ├── Resources └── add.png ├── Shortcut.cs ├── SystemHidenFile.cs ├── ThemeColor.cs ├── TileBeautify.csproj ├── TileIcon.cs ├── TileXml.cs └── 蓝点.ico /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/LICENSE -------------------------------------------------------------------------------- /OpenURL/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/OpenURL/App.config -------------------------------------------------------------------------------- /OpenURL/OpenURL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/OpenURL/OpenURL.csproj -------------------------------------------------------------------------------- /OpenURL/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/OpenURL/Program.cs -------------------------------------------------------------------------------- /OpenURL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/OpenURL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OpenURL/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/OpenURL/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /OpenURL/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/OpenURL/Properties/Resources.resx -------------------------------------------------------------------------------- /OpenURL/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/OpenURL/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /OpenURL/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/OpenURL/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/README.md -------------------------------------------------------------------------------- /TileBeautify.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify.sln -------------------------------------------------------------------------------- /TileBeautify/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/App.config -------------------------------------------------------------------------------- /TileBeautify/ElevatedDragDropManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/ElevatedDragDropManager.cs -------------------------------------------------------------------------------- /TileBeautify/FormAboutMe.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/FormAboutMe.Designer.cs -------------------------------------------------------------------------------- /TileBeautify/FormAboutMe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/FormAboutMe.cs -------------------------------------------------------------------------------- /TileBeautify/FormAboutMe.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/FormAboutMe.resx -------------------------------------------------------------------------------- /TileBeautify/FormEditConfig.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/FormEditConfig.Designer.cs -------------------------------------------------------------------------------- /TileBeautify/FormEditConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/FormEditConfig.cs -------------------------------------------------------------------------------- /TileBeautify/FormEditConfig.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/FormEditConfig.resx -------------------------------------------------------------------------------- /TileBeautify/FormEditPicture.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/FormEditPicture.Designer.cs -------------------------------------------------------------------------------- /TileBeautify/FormEditPicture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/FormEditPicture.cs -------------------------------------------------------------------------------- /TileBeautify/FormEditPicture.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/FormEditPicture.resx -------------------------------------------------------------------------------- /TileBeautify/FormInputBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/FormInputBox.Designer.cs -------------------------------------------------------------------------------- /TileBeautify/FormInputBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/FormInputBox.cs -------------------------------------------------------------------------------- /TileBeautify/FormInputBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/FormInputBox.resx -------------------------------------------------------------------------------- /TileBeautify/FormMyMessageBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/FormMyMessageBox.Designer.cs -------------------------------------------------------------------------------- /TileBeautify/FormMyMessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/FormMyMessageBox.cs -------------------------------------------------------------------------------- /TileBeautify/FormMyMessageBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/FormMyMessageBox.resx -------------------------------------------------------------------------------- /TileBeautify/FormPickColor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/FormPickColor.Designer.cs -------------------------------------------------------------------------------- /TileBeautify/FormPickColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/FormPickColor.cs -------------------------------------------------------------------------------- /TileBeautify/FormPickColor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/FormPickColor.resx -------------------------------------------------------------------------------- /TileBeautify/FormReplaceIcon.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/FormReplaceIcon.Designer.cs -------------------------------------------------------------------------------- /TileBeautify/FormReplaceIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/FormReplaceIcon.cs -------------------------------------------------------------------------------- /TileBeautify/FormReplaceIcon.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/FormReplaceIcon.resx -------------------------------------------------------------------------------- /TileBeautify/PartImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/PartImage.cs -------------------------------------------------------------------------------- /TileBeautify/PickColor.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/PickColor.cur -------------------------------------------------------------------------------- /TileBeautify/PictureZoom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/PictureZoom.cs -------------------------------------------------------------------------------- /TileBeautify/PrimaryScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/PrimaryScreen.cs -------------------------------------------------------------------------------- /TileBeautify/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/Program.cs -------------------------------------------------------------------------------- /TileBeautify/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TileBeautify/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /TileBeautify/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/Properties/Resources.resx -------------------------------------------------------------------------------- /TileBeautify/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /TileBeautify/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/Properties/Settings.settings -------------------------------------------------------------------------------- /TileBeautify/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/Properties/app.manifest -------------------------------------------------------------------------------- /TileBeautify/RepaintGroupBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/RepaintGroupBox.cs -------------------------------------------------------------------------------- /TileBeautify/ReplaceCursor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/ReplaceCursor.cs -------------------------------------------------------------------------------- /TileBeautify/ResizeFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/ResizeFont.cs -------------------------------------------------------------------------------- /TileBeautify/Resources/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/Resources/add.png -------------------------------------------------------------------------------- /TileBeautify/Shortcut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/Shortcut.cs -------------------------------------------------------------------------------- /TileBeautify/SystemHidenFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/SystemHidenFile.cs -------------------------------------------------------------------------------- /TileBeautify/ThemeColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/ThemeColor.cs -------------------------------------------------------------------------------- /TileBeautify/TileBeautify.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/TileBeautify.csproj -------------------------------------------------------------------------------- /TileBeautify/TileIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/TileIcon.cs -------------------------------------------------------------------------------- /TileBeautify/TileXml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/TileXml.cs -------------------------------------------------------------------------------- /TileBeautify/蓝点.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BluePointLilac/TileBeautify/HEAD/TileBeautify/蓝点.ico --------------------------------------------------------------------------------