├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── XmlyDownloader.sln ├── XmlyDownloader ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── SourceHanSansSC-Normal.otf │ └── avalonia-logo.ico ├── Commands │ ├── DelegateCommand.cs │ └── IAsyncCommand.cs ├── Models │ └── DownloadItem.cs ├── Program.cs ├── Services │ ├── DownloadService.cs │ └── IDownloadService.cs ├── ViewLocator.cs ├── ViewModels │ ├── DownloadItemViewModel.cs │ ├── MainWindowViewModel.cs │ └── ViewModelBase.cs ├── Views │ ├── MainWindow.xaml │ └── MainWindow.xaml.cs ├── XmlyDownloader.csproj └── nuget.config ├── mdfiles ├── Ubuntu16.04.png ├── start.png ├── 下载结果.png ├── 专辑示例.png └── 搜索结果.png └── publish.cmd /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxyao145/XmlyDownloader/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxyao145/XmlyDownloader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxyao145/XmlyDownloader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxyao145/XmlyDownloader/HEAD/README.md -------------------------------------------------------------------------------- /XmlyDownloader.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxyao145/XmlyDownloader/HEAD/XmlyDownloader.sln -------------------------------------------------------------------------------- /XmlyDownloader/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxyao145/XmlyDownloader/HEAD/XmlyDownloader/App.xaml -------------------------------------------------------------------------------- /XmlyDownloader/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxyao145/XmlyDownloader/HEAD/XmlyDownloader/App.xaml.cs -------------------------------------------------------------------------------- /XmlyDownloader/Assets/SourceHanSansSC-Normal.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxyao145/XmlyDownloader/HEAD/XmlyDownloader/Assets/SourceHanSansSC-Normal.otf -------------------------------------------------------------------------------- /XmlyDownloader/Assets/avalonia-logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxyao145/XmlyDownloader/HEAD/XmlyDownloader/Assets/avalonia-logo.ico -------------------------------------------------------------------------------- /XmlyDownloader/Commands/DelegateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxyao145/XmlyDownloader/HEAD/XmlyDownloader/Commands/DelegateCommand.cs -------------------------------------------------------------------------------- /XmlyDownloader/Commands/IAsyncCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxyao145/XmlyDownloader/HEAD/XmlyDownloader/Commands/IAsyncCommand.cs -------------------------------------------------------------------------------- /XmlyDownloader/Models/DownloadItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxyao145/XmlyDownloader/HEAD/XmlyDownloader/Models/DownloadItem.cs -------------------------------------------------------------------------------- /XmlyDownloader/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxyao145/XmlyDownloader/HEAD/XmlyDownloader/Program.cs -------------------------------------------------------------------------------- /XmlyDownloader/Services/DownloadService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxyao145/XmlyDownloader/HEAD/XmlyDownloader/Services/DownloadService.cs -------------------------------------------------------------------------------- /XmlyDownloader/Services/IDownloadService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxyao145/XmlyDownloader/HEAD/XmlyDownloader/Services/IDownloadService.cs -------------------------------------------------------------------------------- /XmlyDownloader/ViewLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxyao145/XmlyDownloader/HEAD/XmlyDownloader/ViewLocator.cs -------------------------------------------------------------------------------- /XmlyDownloader/ViewModels/DownloadItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxyao145/XmlyDownloader/HEAD/XmlyDownloader/ViewModels/DownloadItemViewModel.cs -------------------------------------------------------------------------------- /XmlyDownloader/ViewModels/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxyao145/XmlyDownloader/HEAD/XmlyDownloader/ViewModels/MainWindowViewModel.cs -------------------------------------------------------------------------------- /XmlyDownloader/ViewModels/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxyao145/XmlyDownloader/HEAD/XmlyDownloader/ViewModels/ViewModelBase.cs -------------------------------------------------------------------------------- /XmlyDownloader/Views/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxyao145/XmlyDownloader/HEAD/XmlyDownloader/Views/MainWindow.xaml -------------------------------------------------------------------------------- /XmlyDownloader/Views/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxyao145/XmlyDownloader/HEAD/XmlyDownloader/Views/MainWindow.xaml.cs -------------------------------------------------------------------------------- /XmlyDownloader/XmlyDownloader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxyao145/XmlyDownloader/HEAD/XmlyDownloader/XmlyDownloader.csproj -------------------------------------------------------------------------------- /XmlyDownloader/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxyao145/XmlyDownloader/HEAD/XmlyDownloader/nuget.config -------------------------------------------------------------------------------- /mdfiles/Ubuntu16.04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxyao145/XmlyDownloader/HEAD/mdfiles/Ubuntu16.04.png -------------------------------------------------------------------------------- /mdfiles/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxyao145/XmlyDownloader/HEAD/mdfiles/start.png -------------------------------------------------------------------------------- /mdfiles/下载结果.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxyao145/XmlyDownloader/HEAD/mdfiles/下载结果.png -------------------------------------------------------------------------------- /mdfiles/专辑示例.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxyao145/XmlyDownloader/HEAD/mdfiles/专辑示例.png -------------------------------------------------------------------------------- /mdfiles/搜索结果.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxyao145/XmlyDownloader/HEAD/mdfiles/搜索结果.png -------------------------------------------------------------------------------- /publish.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxyao145/XmlyDownloader/HEAD/publish.cmd --------------------------------------------------------------------------------