├── LICENSE ├── PlayerUI.sln ├── PlayerUI ├── App.config ├── Form1.cs ├── Form1.designer.cs ├── Form1.resx ├── Form2.cs ├── Form2.designer.cs ├── Form2.resx ├── Form3.cs ├── Form3.designer.cs ├── Form3.resx ├── PlayerUI.csproj ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── bin │ └── Debug │ │ ├── PlayerUI.exe │ │ ├── PlayerUI.exe.config │ │ ├── PlayerUI.pdb │ │ ├── PlayerUI.vshost.exe │ │ ├── PlayerUI.vshost.exe.config │ │ └── PlayerUI.vshost.exe.manifest └── obj │ └── Debug │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── PlayerUI.Form1.resources │ ├── PlayerUI.Form2.resources │ ├── PlayerUI.Form3.resources │ ├── PlayerUI.Properties.Resources.resources │ ├── PlayerUI.csproj.FileListAbsolute.txt │ ├── PlayerUI.csproj.GenerateResource.Cache │ ├── PlayerUI.csprojResolveAssemblyReference.cache │ ├── PlayerUI.exe │ └── PlayerUI.pdb └── README.md /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/Modern-Media-Player-UI-C-Sharp/HEAD/LICENSE -------------------------------------------------------------------------------- /PlayerUI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/Modern-Media-Player-UI-C-Sharp/HEAD/PlayerUI.sln -------------------------------------------------------------------------------- /PlayerUI/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/Modern-Media-Player-UI-C-Sharp/HEAD/PlayerUI/App.config -------------------------------------------------------------------------------- /PlayerUI/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/Modern-Media-Player-UI-C-Sharp/HEAD/PlayerUI/Form1.cs -------------------------------------------------------------------------------- /PlayerUI/Form1.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/Modern-Media-Player-UI-C-Sharp/HEAD/PlayerUI/Form1.designer.cs -------------------------------------------------------------------------------- /PlayerUI/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/Modern-Media-Player-UI-C-Sharp/HEAD/PlayerUI/Form1.resx -------------------------------------------------------------------------------- /PlayerUI/Form2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/Modern-Media-Player-UI-C-Sharp/HEAD/PlayerUI/Form2.cs -------------------------------------------------------------------------------- /PlayerUI/Form2.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/Modern-Media-Player-UI-C-Sharp/HEAD/PlayerUI/Form2.designer.cs -------------------------------------------------------------------------------- /PlayerUI/Form2.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/Modern-Media-Player-UI-C-Sharp/HEAD/PlayerUI/Form2.resx -------------------------------------------------------------------------------- /PlayerUI/Form3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/Modern-Media-Player-UI-C-Sharp/HEAD/PlayerUI/Form3.cs -------------------------------------------------------------------------------- /PlayerUI/Form3.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/Modern-Media-Player-UI-C-Sharp/HEAD/PlayerUI/Form3.designer.cs -------------------------------------------------------------------------------- /PlayerUI/Form3.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/Modern-Media-Player-UI-C-Sharp/HEAD/PlayerUI/Form3.resx -------------------------------------------------------------------------------- /PlayerUI/PlayerUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/Modern-Media-Player-UI-C-Sharp/HEAD/PlayerUI/PlayerUI.csproj -------------------------------------------------------------------------------- /PlayerUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/Modern-Media-Player-UI-C-Sharp/HEAD/PlayerUI/Program.cs -------------------------------------------------------------------------------- /PlayerUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/Modern-Media-Player-UI-C-Sharp/HEAD/PlayerUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PlayerUI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/Modern-Media-Player-UI-C-Sharp/HEAD/PlayerUI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PlayerUI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/Modern-Media-Player-UI-C-Sharp/HEAD/PlayerUI/Properties/Resources.resx -------------------------------------------------------------------------------- /PlayerUI/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/Modern-Media-Player-UI-C-Sharp/HEAD/PlayerUI/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PlayerUI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/Modern-Media-Player-UI-C-Sharp/HEAD/PlayerUI/Properties/Settings.settings -------------------------------------------------------------------------------- /PlayerUI/bin/Debug/PlayerUI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/Modern-Media-Player-UI-C-Sharp/HEAD/PlayerUI/bin/Debug/PlayerUI.exe -------------------------------------------------------------------------------- /PlayerUI/bin/Debug/PlayerUI.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/Modern-Media-Player-UI-C-Sharp/HEAD/PlayerUI/bin/Debug/PlayerUI.exe.config -------------------------------------------------------------------------------- /PlayerUI/bin/Debug/PlayerUI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/Modern-Media-Player-UI-C-Sharp/HEAD/PlayerUI/bin/Debug/PlayerUI.pdb -------------------------------------------------------------------------------- /PlayerUI/bin/Debug/PlayerUI.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/Modern-Media-Player-UI-C-Sharp/HEAD/PlayerUI/bin/Debug/PlayerUI.vshost.exe -------------------------------------------------------------------------------- /PlayerUI/bin/Debug/PlayerUI.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/Modern-Media-Player-UI-C-Sharp/HEAD/PlayerUI/bin/Debug/PlayerUI.vshost.exe.config -------------------------------------------------------------------------------- /PlayerUI/bin/Debug/PlayerUI.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/Modern-Media-Player-UI-C-Sharp/HEAD/PlayerUI/bin/Debug/PlayerUI.vshost.exe.manifest -------------------------------------------------------------------------------- /PlayerUI/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/Modern-Media-Player-UI-C-Sharp/HEAD/PlayerUI/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /PlayerUI/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/Modern-Media-Player-UI-C-Sharp/HEAD/PlayerUI/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PlayerUI/obj/Debug/PlayerUI.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/Modern-Media-Player-UI-C-Sharp/HEAD/PlayerUI/obj/Debug/PlayerUI.Form1.resources -------------------------------------------------------------------------------- /PlayerUI/obj/Debug/PlayerUI.Form2.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/Modern-Media-Player-UI-C-Sharp/HEAD/PlayerUI/obj/Debug/PlayerUI.Form2.resources -------------------------------------------------------------------------------- /PlayerUI/obj/Debug/PlayerUI.Form3.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/Modern-Media-Player-UI-C-Sharp/HEAD/PlayerUI/obj/Debug/PlayerUI.Form3.resources -------------------------------------------------------------------------------- /PlayerUI/obj/Debug/PlayerUI.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/Modern-Media-Player-UI-C-Sharp/HEAD/PlayerUI/obj/Debug/PlayerUI.Properties.Resources.resources -------------------------------------------------------------------------------- /PlayerUI/obj/Debug/PlayerUI.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/Modern-Media-Player-UI-C-Sharp/HEAD/PlayerUI/obj/Debug/PlayerUI.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /PlayerUI/obj/Debug/PlayerUI.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/Modern-Media-Player-UI-C-Sharp/HEAD/PlayerUI/obj/Debug/PlayerUI.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /PlayerUI/obj/Debug/PlayerUI.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/Modern-Media-Player-UI-C-Sharp/HEAD/PlayerUI/obj/Debug/PlayerUI.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /PlayerUI/obj/Debug/PlayerUI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/Modern-Media-Player-UI-C-Sharp/HEAD/PlayerUI/obj/Debug/PlayerUI.exe -------------------------------------------------------------------------------- /PlayerUI/obj/Debug/PlayerUI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/Modern-Media-Player-UI-C-Sharp/HEAD/PlayerUI/obj/Debug/PlayerUI.pdb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJCodeAdvance/Modern-Media-Player-UI-C-Sharp/HEAD/README.md --------------------------------------------------------------------------------