├── .gitattributes ├── .gitignore ├── LyricEditor.sln ├── LyricEditor ├── App.config ├── App.xaml ├── App.xaml.cs ├── Converters │ ├── BaseValueConverter.cs │ └── BooleanToVisibilityConverter.cs ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── Icons │ ├── LrcMaker.ico │ ├── MediaButtonIcons │ │ ├── FastLeft.png │ │ ├── FastRight.png │ │ ├── NavigateLeft.png │ │ ├── NavigateRight.png │ │ ├── Pause.png │ │ ├── Start.png │ │ ├── Stop.png │ │ ├── ToLeft.png │ │ ├── ToRight.png │ │ ├── clock.png │ │ └── volume.png │ ├── MenuIcons │ │ ├── Options.png │ │ ├── edit.png │ │ ├── paper-plane.png │ │ └── save.png │ ├── ToolButtonIcons │ │ ├── Flag-red.png │ │ ├── Go-back.png │ │ ├── Go-into.png │ │ ├── Navigate-down.png │ │ ├── Navigate-up.png │ │ ├── Note.png │ │ ├── Order.png │ │ ├── add1.png │ │ ├── audio.png │ │ ├── delete.png │ │ ├── delete1.png │ │ ├── import.png │ │ ├── information.png │ │ ├── success.png │ │ └── trash.png │ └── disc.png ├── Lyric │ ├── LrcHelper.cs │ ├── LrcLine.cs │ └── LrcManager.cs ├── LyricEditor.csproj ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── Resources.Designer.cs │ └── Resources.resx ├── Styles │ ├── Colors.xaml │ └── Styles.xaml ├── UserControls │ ├── InputBox.xaml │ ├── InputBox.xaml.cs │ ├── LrcLineView.xaml │ ├── LrcLineView.xaml.cs │ ├── LrcTextView.xaml │ └── LrcTextView.xaml.cs └── Utils │ ├── FileHelper.cs │ ├── ResourceHelper.cs │ └── TagLibHelper.cs ├── README.md └── example.jpg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/.gitignore -------------------------------------------------------------------------------- /LyricEditor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor.sln -------------------------------------------------------------------------------- /LyricEditor/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/App.config -------------------------------------------------------------------------------- /LyricEditor/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/App.xaml -------------------------------------------------------------------------------- /LyricEditor/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/App.xaml.cs -------------------------------------------------------------------------------- /LyricEditor/Converters/BaseValueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Converters/BaseValueConverter.cs -------------------------------------------------------------------------------- /LyricEditor/Converters/BooleanToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Converters/BooleanToVisibilityConverter.cs -------------------------------------------------------------------------------- /LyricEditor/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/FodyWeavers.xml -------------------------------------------------------------------------------- /LyricEditor/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/FodyWeavers.xsd -------------------------------------------------------------------------------- /LyricEditor/Icons/LrcMaker.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Icons/LrcMaker.ico -------------------------------------------------------------------------------- /LyricEditor/Icons/MediaButtonIcons/FastLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Icons/MediaButtonIcons/FastLeft.png -------------------------------------------------------------------------------- /LyricEditor/Icons/MediaButtonIcons/FastRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Icons/MediaButtonIcons/FastRight.png -------------------------------------------------------------------------------- /LyricEditor/Icons/MediaButtonIcons/NavigateLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Icons/MediaButtonIcons/NavigateLeft.png -------------------------------------------------------------------------------- /LyricEditor/Icons/MediaButtonIcons/NavigateRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Icons/MediaButtonIcons/NavigateRight.png -------------------------------------------------------------------------------- /LyricEditor/Icons/MediaButtonIcons/Pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Icons/MediaButtonIcons/Pause.png -------------------------------------------------------------------------------- /LyricEditor/Icons/MediaButtonIcons/Start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Icons/MediaButtonIcons/Start.png -------------------------------------------------------------------------------- /LyricEditor/Icons/MediaButtonIcons/Stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Icons/MediaButtonIcons/Stop.png -------------------------------------------------------------------------------- /LyricEditor/Icons/MediaButtonIcons/ToLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Icons/MediaButtonIcons/ToLeft.png -------------------------------------------------------------------------------- /LyricEditor/Icons/MediaButtonIcons/ToRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Icons/MediaButtonIcons/ToRight.png -------------------------------------------------------------------------------- /LyricEditor/Icons/MediaButtonIcons/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Icons/MediaButtonIcons/clock.png -------------------------------------------------------------------------------- /LyricEditor/Icons/MediaButtonIcons/volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Icons/MediaButtonIcons/volume.png -------------------------------------------------------------------------------- /LyricEditor/Icons/MenuIcons/Options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Icons/MenuIcons/Options.png -------------------------------------------------------------------------------- /LyricEditor/Icons/MenuIcons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Icons/MenuIcons/edit.png -------------------------------------------------------------------------------- /LyricEditor/Icons/MenuIcons/paper-plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Icons/MenuIcons/paper-plane.png -------------------------------------------------------------------------------- /LyricEditor/Icons/MenuIcons/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Icons/MenuIcons/save.png -------------------------------------------------------------------------------- /LyricEditor/Icons/ToolButtonIcons/Flag-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Icons/ToolButtonIcons/Flag-red.png -------------------------------------------------------------------------------- /LyricEditor/Icons/ToolButtonIcons/Go-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Icons/ToolButtonIcons/Go-back.png -------------------------------------------------------------------------------- /LyricEditor/Icons/ToolButtonIcons/Go-into.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Icons/ToolButtonIcons/Go-into.png -------------------------------------------------------------------------------- /LyricEditor/Icons/ToolButtonIcons/Navigate-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Icons/ToolButtonIcons/Navigate-down.png -------------------------------------------------------------------------------- /LyricEditor/Icons/ToolButtonIcons/Navigate-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Icons/ToolButtonIcons/Navigate-up.png -------------------------------------------------------------------------------- /LyricEditor/Icons/ToolButtonIcons/Note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Icons/ToolButtonIcons/Note.png -------------------------------------------------------------------------------- /LyricEditor/Icons/ToolButtonIcons/Order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Icons/ToolButtonIcons/Order.png -------------------------------------------------------------------------------- /LyricEditor/Icons/ToolButtonIcons/add1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Icons/ToolButtonIcons/add1.png -------------------------------------------------------------------------------- /LyricEditor/Icons/ToolButtonIcons/audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Icons/ToolButtonIcons/audio.png -------------------------------------------------------------------------------- /LyricEditor/Icons/ToolButtonIcons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Icons/ToolButtonIcons/delete.png -------------------------------------------------------------------------------- /LyricEditor/Icons/ToolButtonIcons/delete1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Icons/ToolButtonIcons/delete1.png -------------------------------------------------------------------------------- /LyricEditor/Icons/ToolButtonIcons/import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Icons/ToolButtonIcons/import.png -------------------------------------------------------------------------------- /LyricEditor/Icons/ToolButtonIcons/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Icons/ToolButtonIcons/information.png -------------------------------------------------------------------------------- /LyricEditor/Icons/ToolButtonIcons/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Icons/ToolButtonIcons/success.png -------------------------------------------------------------------------------- /LyricEditor/Icons/ToolButtonIcons/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Icons/ToolButtonIcons/trash.png -------------------------------------------------------------------------------- /LyricEditor/Icons/disc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Icons/disc.png -------------------------------------------------------------------------------- /LyricEditor/Lyric/LrcHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Lyric/LrcHelper.cs -------------------------------------------------------------------------------- /LyricEditor/Lyric/LrcLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Lyric/LrcLine.cs -------------------------------------------------------------------------------- /LyricEditor/Lyric/LrcManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Lyric/LrcManager.cs -------------------------------------------------------------------------------- /LyricEditor/LyricEditor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/LyricEditor.csproj -------------------------------------------------------------------------------- /LyricEditor/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/MainWindow.xaml -------------------------------------------------------------------------------- /LyricEditor/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/MainWindow.xaml.cs -------------------------------------------------------------------------------- /LyricEditor/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /LyricEditor/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Properties/Resources.resx -------------------------------------------------------------------------------- /LyricEditor/Styles/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Styles/Colors.xaml -------------------------------------------------------------------------------- /LyricEditor/Styles/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Styles/Styles.xaml -------------------------------------------------------------------------------- /LyricEditor/UserControls/InputBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/UserControls/InputBox.xaml -------------------------------------------------------------------------------- /LyricEditor/UserControls/InputBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/UserControls/InputBox.xaml.cs -------------------------------------------------------------------------------- /LyricEditor/UserControls/LrcLineView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/UserControls/LrcLineView.xaml -------------------------------------------------------------------------------- /LyricEditor/UserControls/LrcLineView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/UserControls/LrcLineView.xaml.cs -------------------------------------------------------------------------------- /LyricEditor/UserControls/LrcTextView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/UserControls/LrcTextView.xaml -------------------------------------------------------------------------------- /LyricEditor/UserControls/LrcTextView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/UserControls/LrcTextView.xaml.cs -------------------------------------------------------------------------------- /LyricEditor/Utils/FileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Utils/FileHelper.cs -------------------------------------------------------------------------------- /LyricEditor/Utils/ResourceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Utils/ResourceHelper.cs -------------------------------------------------------------------------------- /LyricEditor/Utils/TagLibHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/LyricEditor/Utils/TagLibHelper.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/README.md -------------------------------------------------------------------------------- /example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BYJRK/LyricEditor/HEAD/example.jpg --------------------------------------------------------------------------------