├── .gitattributes ├── .gitignore ├── AssemblyInfo.cs ├── ExtraLyricsControl.xaml ├── ExtraLyricsControl.xaml.cs ├── LICENSE.txt ├── LyricsComponent.csproj ├── LyricsComponent.sln ├── LyricsControl.xaml ├── LyricsControl.xaml.cs ├── Plugin.cs ├── Properties └── launchSettings.json ├── README.md ├── Themes └── Generic.xaml ├── generate-md5.ps1 ├── icon.png └── manifest.yml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangyin14/LyricsIsland/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangyin14/LyricsIsland/HEAD/.gitignore -------------------------------------------------------------------------------- /AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangyin14/LyricsIsland/HEAD/AssemblyInfo.cs -------------------------------------------------------------------------------- /ExtraLyricsControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangyin14/LyricsIsland/HEAD/ExtraLyricsControl.xaml -------------------------------------------------------------------------------- /ExtraLyricsControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangyin14/LyricsIsland/HEAD/ExtraLyricsControl.xaml.cs -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangyin14/LyricsIsland/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LyricsComponent.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangyin14/LyricsIsland/HEAD/LyricsComponent.csproj -------------------------------------------------------------------------------- /LyricsComponent.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangyin14/LyricsIsland/HEAD/LyricsComponent.sln -------------------------------------------------------------------------------- /LyricsControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangyin14/LyricsIsland/HEAD/LyricsControl.xaml -------------------------------------------------------------------------------- /LyricsControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangyin14/LyricsIsland/HEAD/LyricsControl.xaml.cs -------------------------------------------------------------------------------- /Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangyin14/LyricsIsland/HEAD/Plugin.cs -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangyin14/LyricsIsland/HEAD/Properties/launchSettings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangyin14/LyricsIsland/HEAD/README.md -------------------------------------------------------------------------------- /Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangyin14/LyricsIsland/HEAD/Themes/Generic.xaml -------------------------------------------------------------------------------- /generate-md5.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangyin14/LyricsIsland/HEAD/generate-md5.ps1 -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangyin14/LyricsIsland/HEAD/icon.png -------------------------------------------------------------------------------- /manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiangyin14/LyricsIsland/HEAD/manifest.yml --------------------------------------------------------------------------------