├── .gitignore
├── App.xaml
├── App.xaml.Configuration.cs
├── App.xaml.cs
├── Assets
├── Icon-64.ico
├── LargeTile.scale-100.png
├── LargeTile.scale-125.png
├── LargeTile.scale-150.png
├── LargeTile.scale-200.png
├── LargeTile.scale-400.png
├── Screenshots
│ ├── Screenshot 0 (2025-04-10).png
│ ├── Screenshot 1 (2025-04-10).png
│ ├── Screenshot 2 (2025-04-10).png
│ └── Screenshot 3 (2025-04-10).png
├── SmallTile.scale-100.png
├── SmallTile.scale-125.png
├── SmallTile.scale-150.png
├── SmallTile.scale-200.png
├── SmallTile.scale-400.png
├── SplashScreen.scale-100.png
├── SplashScreen.scale-125.png
├── SplashScreen.scale-150.png
├── SplashScreen.scale-200.png
├── SplashScreen.scale-400.png
├── Square150x150Logo.scale-100.png
├── Square150x150Logo.scale-125.png
├── Square150x150Logo.scale-150.png
├── Square150x150Logo.scale-200.png
├── Square150x150Logo.scale-400.png
├── Square44x44Logo.altform-lightunplated_targetsize-16.png
├── Square44x44Logo.altform-lightunplated_targetsize-24.png
├── Square44x44Logo.altform-lightunplated_targetsize-256.png
├── Square44x44Logo.altform-lightunplated_targetsize-32.png
├── Square44x44Logo.altform-lightunplated_targetsize-48.png
├── Square44x44Logo.altform-unplated_targetsize-16.png
├── Square44x44Logo.altform-unplated_targetsize-24.png
├── Square44x44Logo.altform-unplated_targetsize-256.png
├── Square44x44Logo.altform-unplated_targetsize-32.png
├── Square44x44Logo.altform-unplated_targetsize-48.png
├── Square44x44Logo.scale-100.png
├── Square44x44Logo.scale-125.png
├── Square44x44Logo.scale-150.png
├── Square44x44Logo.scale-200.png
├── Square44x44Logo.scale-400.png
├── Square44x44Logo.targetsize-16.png
├── Square44x44Logo.targetsize-24.png
├── Square44x44Logo.targetsize-256.png
├── Square44x44Logo.targetsize-32.png
├── Square44x44Logo.targetsize-48.png
├── StoreLogo.scale-100.png
├── StoreLogo.scale-125.png
├── StoreLogo.scale-150.png
├── StoreLogo.scale-200.png
├── StoreLogo.scale-400.png
├── Wide310x150Logo.scale-100.png
├── Wide310x150Logo.scale-125.png
├── Wide310x150Logo.scale-150.png
├── Wide310x150Logo.scale-200.png
└── Wide310x150Logo.scale-400.png
├── BluDay.AwesomeMediaPlayer.csproj
├── BluDay.AwesomeMediaPlayer.sln
├── Controls
├── MediaControlBar.xaml
├── MediaControlBar.xaml.cs
├── MenuBar.xaml
├── MenuBar.xaml.cs
├── NavigationViewHeaderBar.xaml
├── NavigationViewHeaderBar.xaml.cs
├── TitleBar.xaml
├── TitleBar.xaml.cs
├── Views
│ ├── AboutView.xaml
│ ├── AboutView.xaml.cs
│ ├── CurrentMediaInformationGeneralView.xaml
│ ├── CurrentMediaInformationGeneralView.xaml.cs
│ ├── HelpView.xaml
│ ├── HelpView.xaml.cs
│ ├── MainView.xaml
│ ├── MainView.xaml.cs
│ ├── MediaLibraryView.xaml
│ ├── MediaLibraryView.xaml.cs
│ ├── PreferencesView.xaml
│ └── PreferencesView.xaml.cs
└── Windows
│ ├── AboutWindow.xaml
│ ├── AboutWindow.xaml.cs
│ ├── CurrentMediaInformationWindow.xaml
│ ├── CurrentMediaInformationWindow.xaml.cs
│ ├── HelpWindow.xaml
│ ├── HelpWindow.xaml.cs
│ ├── MainWindow.xaml
│ ├── MainWindow.xaml.cs
│ ├── PreferencesWindow.xaml
│ └── PreferencesWindow.xaml.cs
├── Domain
└── ViewModels
│ ├── AboutViewModel.cs
│ ├── CurrentMediaInformationGeneralViewModel.cs
│ ├── HelpViewModel.cs
│ ├── MainViewModel.cs
│ ├── MediaLibraryViewModel.cs
│ ├── PreferencesViewModel.cs
│ └── Windows
│ ├── AboutWindowViewModel.cs
│ ├── CurrentMediaInformationWindowViewModel.cs
│ ├── HelpWindowViewModel.cs
│ ├── MainWindowViewModel.cs
│ └── PreferencesWindowViewModel.cs
├── LICENSE
├── Lifecycle
└── Activation
│ ├── AppActivationHandler.cs
│ └── AppDeactivationHandler.cs
├── Package.appxmanifest
├── Program.cs
├── Properties
└── launchSettings.json
├── README.md
├── Resources
└── Strings
│ ├── Resources.resw
│ └── en-US
│ └── Resources.resw
├── Usings.cs
└── app.manifest
/.gitignore:
--------------------------------------------------------------------------------
1 | ## Ignore Visual Studio temporary files, build results, and
2 | ## files generated by popular Visual Studio add-ons.
3 | ##
4 | ## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore
5 |
6 | # User-specific files
7 | *.rsuser
8 | *.suo
9 | *.user
10 | *.userosscache
11 | *.sln.docstates
12 |
13 | # User-specific files (MonoDevelop/Xamarin Studio)
14 | *.userprefs
15 |
16 | # Mono auto generated files
17 | mono_crash.*
18 |
19 | # Build results
20 | [Dd]ebug/
21 | [Dd]ebugPublic/
22 | [Rr]elease/
23 | [Rr]eleases/
24 | x64/
25 | x86/
26 | [Ww][Ii][Nn]32/
27 | [Aa][Rr][Mm]/
28 | [Aa][Rr][Mm]64/
29 | bld/
30 | [Bb]in/
31 | [Oo]bj/
32 | [Ll]og/
33 | [Ll]ogs/
34 |
35 | # Visual Studio 2015/2017 cache/options directory
36 | .vs/
37 | # Uncomment if you have tasks that create the project's static files in wwwroot
38 | #wwwroot/
39 |
40 | # Visual Studio 2017 auto generated files
41 | Generated\ Files/
42 |
43 | # MSTest test Results
44 | [Tt]est[Rr]esult*/
45 | [Bb]uild[Ll]og.*
46 |
47 | # NUnit
48 | *.VisualState.xml
49 | TestResult.xml
50 | nunit-*.xml
51 |
52 | # Build Results of an ATL Project
53 | [Dd]ebugPS/
54 | [Rr]eleasePS/
55 | dlldata.c
56 |
57 | # Benchmark Results
58 | BenchmarkDotNet.Artifacts/
59 |
60 | # .NET Core
61 | project.lock.json
62 | project.fragment.lock.json
63 | artifacts/
64 |
65 | # ASP.NET Scaffolding
66 | ScaffoldingReadMe.txt
67 |
68 | # StyleCop
69 | StyleCopReport.xml
70 |
71 | # Files built by Visual Studio
72 | *_i.c
73 | *_p.c
74 | *_h.h
75 | *.ilk
76 | *.meta
77 | *.obj
78 | *.iobj
79 | *.pch
80 | *.pdb
81 | *.ipdb
82 | *.pgc
83 | *.pgd
84 | *.rsp
85 | *.sbr
86 | *.tlb
87 | *.tli
88 | *.tlh
89 | *.tmp
90 | *.tmp_proj
91 | *_wpftmp.csproj
92 | *.log
93 | *.tlog
94 | *.vspscc
95 | *.vssscc
96 | .builds
97 | *.pidb
98 | *.svclog
99 | *.scc
100 |
101 | # Chutzpah Test files
102 | _Chutzpah*
103 |
104 | # Visual C++ cache files
105 | ipch/
106 | *.aps
107 | *.ncb
108 | *.opendb
109 | *.opensdf
110 | *.sdf
111 | *.cachefile
112 | *.VC.db
113 | *.VC.VC.opendb
114 |
115 | # Visual Studio profiler
116 | *.psess
117 | *.vsp
118 | *.vspx
119 | *.sap
120 |
121 | # Visual Studio Trace Files
122 | *.e2e
123 |
124 | # TFS 2012 Local Workspace
125 | $tf/
126 |
127 | # Guidance Automation Toolkit
128 | *.gpState
129 |
130 | # ReSharper is a .NET coding add-in
131 | _ReSharper*/
132 | *.[Rr]e[Ss]harper
133 | *.DotSettings.user
134 |
135 | # TeamCity is a build add-in
136 | _TeamCity*
137 |
138 | # DotCover is a Code Coverage Tool
139 | *.dotCover
140 |
141 | # AxoCover is a Code Coverage Tool
142 | .axoCover/*
143 | !.axoCover/settings.json
144 |
145 | # Coverlet is a free, cross platform Code Coverage Tool
146 | coverage*.json
147 | coverage*.xml
148 | coverage*.info
149 |
150 | # Visual Studio code coverage results
151 | *.coverage
152 | *.coveragexml
153 |
154 | # NCrunch
155 | _NCrunch_*
156 | .*crunch*.local.xml
157 | nCrunchTemp_*
158 |
159 | # MightyMoose
160 | *.mm.*
161 | AutoTest.Net/
162 |
163 | # Web workbench (sass)
164 | .sass-cache/
165 |
166 | # Installshield output folder
167 | [Ee]xpress/
168 |
169 | # DocProject is a documentation generator add-in
170 | DocProject/buildhelp/
171 | DocProject/Help/*.HxT
172 | DocProject/Help/*.HxC
173 | DocProject/Help/*.hhc
174 | DocProject/Help/*.hhk
175 | DocProject/Help/*.hhp
176 | DocProject/Help/Html2
177 | DocProject/Help/html
178 |
179 | # Click-Once directory
180 | publish/
181 |
182 | # Publish Web Output
183 | *.[Pp]ublish.xml
184 | *.azurePubxml
185 | # Note: Comment the next line if you want to checkin your web deploy settings,
186 | # but database connection strings (with potential passwords) will be unencrypted
187 | *.pubxml
188 | *.publishproj
189 |
190 | # Microsoft Azure Web App publish settings. Comment the next line if you want to
191 | # checkin your Azure Web App publish settings, but sensitive information contained
192 | # in these scripts will be unencrypted
193 | PublishScripts/
194 |
195 | # NuGet Packages
196 | *.nupkg
197 | # NuGet Symbol Packages
198 | *.snupkg
199 | # The packages folder can be ignored because of Package Restore
200 | **/[Pp]ackages/*
201 | # except build/, which is used as an MSBuild target.
202 | !**/[Pp]ackages/build/
203 | # Uncomment if necessary however generally it will be regenerated when needed
204 | #!**/[Pp]ackages/repositories.config
205 | # NuGet v3's project.json files produces more ignorable files
206 | *.nuget.props
207 | *.nuget.targets
208 |
209 | # Microsoft Azure Build Output
210 | csx/
211 | *.build.csdef
212 |
213 | # Microsoft Azure Emulator
214 | ecf/
215 | rcf/
216 |
217 | # Windows Store app package directories and files
218 | AppPackages/
219 | BundleArtifacts/
220 | Package.StoreAssociation.xml
221 | _pkginfo.txt
222 | *.appx
223 | *.appxbundle
224 | *.appxupload
225 |
226 | # Visual Studio cache files
227 | # files ending in .cache can be ignored
228 | *.[Cc]ache
229 | # but keep track of directories ending in .cache
230 | !?*.[Cc]ache/
231 |
232 | # Others
233 | ClientBin/
234 | ~$*
235 | *~
236 | *.dbmdl
237 | *.dbproj.schemaview
238 | *.jfm
239 | *.pfx
240 | *.publishsettings
241 | orleans.codegen.cs
242 |
243 | # Including strong name files can present a security risk
244 | # (https://github.com/github/gitignore/pull/2483#issue-259490424)
245 | #*.snk
246 |
247 | # Since there are multiple workflows, uncomment next line to ignore bower_components
248 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
249 | #bower_components/
250 |
251 | # RIA/Silverlight projects
252 | Generated_Code/
253 |
254 | # Backup & report files from converting an old project file
255 | # to a newer Visual Studio version. Backup files are not needed,
256 | # because we have git ;-)
257 | _UpgradeReport_Files/
258 | Backup*/
259 | UpgradeLog*.XML
260 | UpgradeLog*.htm
261 | ServiceFabricBackup/
262 | *.rptproj.bak
263 |
264 | # SQL Server files
265 | *.mdf
266 | *.ldf
267 | *.ndf
268 |
269 | # Business Intelligence projects
270 | *.rdl.data
271 | *.bim.layout
272 | *.bim_*.settings
273 | *.rptproj.rsuser
274 | *- [Bb]ackup.rdl
275 | *- [Bb]ackup ([0-9]).rdl
276 | *- [Bb]ackup ([0-9][0-9]).rdl
277 |
278 | # Microsoft Fakes
279 | FakesAssemblies/
280 |
281 | # GhostDoc plugin setting file
282 | *.GhostDoc.xml
283 |
284 | # Node.js Tools for Visual Studio
285 | .ntvs_analysis.dat
286 | node_modules/
287 |
288 | # Visual Studio 6 build log
289 | *.plg
290 |
291 | # Visual Studio 6 workspace options file
292 | *.opt
293 |
294 | # Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
295 | *.vbw
296 |
297 | # Visual Studio 6 auto-generated project file (contains which files were open etc.)
298 | *.vbp
299 |
300 | # Visual Studio 6 workspace and project file (working project files containing files to include in project)
301 | *.dsw
302 | *.dsp
303 |
304 | # Visual Studio 6 technical files
305 | *.ncb
306 | *.aps
307 |
308 | # Visual Studio LightSwitch build output
309 | **/*.HTMLClient/GeneratedArtifacts
310 | **/*.DesktopClient/GeneratedArtifacts
311 | **/*.DesktopClient/ModelManifest.xml
312 | **/*.Server/GeneratedArtifacts
313 | **/*.Server/ModelManifest.xml
314 | _Pvt_Extensions
315 |
316 | # Paket dependency manager
317 | .paket/paket.exe
318 | paket-files/
319 |
320 | # FAKE - F# Make
321 | .fake/
322 |
323 | # CodeRush personal settings
324 | .cr/personal
325 |
326 | # Python Tools for Visual Studio (PTVS)
327 | __pycache__/
328 | *.pyc
329 |
330 | # Cake - Uncomment if you are using it
331 | # tools/**
332 | # !tools/packages.config
333 |
334 | # Tabs Studio
335 | *.tss
336 |
337 | # Telerik's JustMock configuration file
338 | *.jmconfig
339 |
340 | # BizTalk build output
341 | *.btp.cs
342 | *.btm.cs
343 | *.odx.cs
344 | *.xsd.cs
345 |
346 | # OpenCover UI analysis results
347 | OpenCover/
348 |
349 | # Azure Stream Analytics local run output
350 | ASALocalRun/
351 |
352 | # MSBuild Binary and Structured Log
353 | *.binlog
354 |
355 | # NVidia Nsight GPU debugger configuration file
356 | *.nvuser
357 |
358 | # MFractors (Xamarin productivity tool) working folder
359 | .mfractor/
360 |
361 | # Local History for Visual Studio
362 | .localhistory/
363 |
364 | # Visual Studio History (VSHistory) files
365 | .vshistory/
366 |
367 | # BeatPulse healthcheck temp database
368 | healthchecksdb
369 |
370 | # Backup folder for Package Reference Convert tool in Visual Studio 2017
371 | MigrationBackup/
372 |
373 | # Ionide (cross platform F# VS Code tools) working folder
374 | .ionide/
375 |
376 | # Fody - auto-generated XML schema
377 | FodyWeavers.xsd
378 |
379 | # VS Code files for those working on multiple tools
380 | .vscode/*
381 | !.vscode/settings.json
382 | !.vscode/tasks.json
383 | !.vscode/launch.json
384 | !.vscode/extensions.json
385 | *.code-workspace
386 |
387 | # Local History for Visual Studio Code
388 | .history/
389 |
390 | # Windows Installer files from build outputs
391 | *.cab
392 | *.msi
393 | *.msix
394 | *.msm
395 | *.msp
396 |
397 | # JetBrains Rider
398 | *.sln.iml
399 |
--------------------------------------------------------------------------------
/App.xaml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
19 |
20 | Transparent
21 | Transparent
22 | White
23 |
24 |
25 | CornflowerBlue
26 | CornflowerBlue
27 | CornflowerBlue
28 | CornflowerBlue
29 | CornflowerBlue
30 | CornflowerBlue
31 | CornflowerBlue
32 |
33 |
34 |
--------------------------------------------------------------------------------
/App.xaml.Configuration.cs:
--------------------------------------------------------------------------------
1 | namespace BluDay.AwesomeMediaPlayer;
2 |
3 | ///
4 | /// Contains methods for configuring logging and services in the application.
5 | ///
6 | public sealed partial class App
7 | {
8 | ///
9 | /// Configures the logging factory and provider through the provided builder instance.
10 | ///
11 | ///
12 | /// The logging builder instance.
13 | ///
14 | public static void ConfigureLogging(ILoggingBuilder logging)
15 | {
16 | logging
17 | .AddConsole()
18 | .AddDebug();
19 |
20 | logging
21 | .SetMinimumLevel(LogLevel.Debug);
22 | }
23 |
24 | ///
25 | /// Configures and registers platform-specific service descriptors.
26 | ///
27 | ///
28 | /// The service descriptor collection.
29 | ///
30 | public static void ConfigureServices(IServiceCollection services)
31 | {
32 | services
33 | .AddLogging(ConfigureLogging);
34 |
35 | services
36 | .AddMemoryCache();
37 |
38 | services
39 | .AddSingleton();
40 |
41 | services
42 | .AddSingleton()
43 | .AddSingleton();
44 |
45 | services
46 | .TryAddAppActivationService()
47 | .AddSingleton()
48 | .AddSingleton()
49 | .AddSingleton()
50 | .AddSingleton();
51 |
52 | services
53 | .AddViews();
54 |
55 | services
56 | .AddSingleton>()
57 | .AddViewModels();
58 |
59 | services
60 | .AddSingleton>()
61 | .AddWindows();
62 | }
63 | }
--------------------------------------------------------------------------------
/App.xaml.cs:
--------------------------------------------------------------------------------
1 | namespace BluDay.AwesomeMediaPlayer;
2 |
3 | ///
4 | /// Provides application-specific behavior to supplement the default
5 | /// class.
6 | ///
7 | public sealed partial class App : Application
8 | {
9 | private readonly IAppActivationService _activationService;
10 |
11 | private readonly ILogger _logger;
12 |
13 | ///
14 | /// Initializes a new instance of the class.
15 | ///
16 | ///
17 | /// The app activation service.
18 | ///
19 | ///
20 | /// The logger instance.
21 | ///
22 | public App(IAppActivationService activationService, ILogger logger)
23 | {
24 | _activationService = activationService;
25 |
26 | _logger = logger;
27 |
28 | #if DEBUG
29 | UnhandledException += App_UnhandledException;
30 | #endif
31 |
32 | InitializeComponent();
33 | }
34 |
35 | private void App_UnhandledException(object sender, Muxc.UnhandledExceptionEventArgs e)
36 | {
37 | _logger.LogDebug(e.Exception.ToString());
38 | }
39 |
40 | ///
41 | /// Invoked when the application is launched.
42 | ///
43 | ///
44 | /// Details about the launch request and process.
45 | ///
46 | protected override void OnLaunched(LaunchActivatedEventArgs e)
47 | {
48 | _activationService.ActivateAsync(e);
49 | }
50 | }
--------------------------------------------------------------------------------
/Assets/Icon-64.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/Icon-64.ico
--------------------------------------------------------------------------------
/Assets/LargeTile.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/LargeTile.scale-100.png
--------------------------------------------------------------------------------
/Assets/LargeTile.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/LargeTile.scale-125.png
--------------------------------------------------------------------------------
/Assets/LargeTile.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/LargeTile.scale-150.png
--------------------------------------------------------------------------------
/Assets/LargeTile.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/LargeTile.scale-200.png
--------------------------------------------------------------------------------
/Assets/LargeTile.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/LargeTile.scale-400.png
--------------------------------------------------------------------------------
/Assets/Screenshots/Screenshot 0 (2025-04-10).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/Screenshots/Screenshot 0 (2025-04-10).png
--------------------------------------------------------------------------------
/Assets/Screenshots/Screenshot 1 (2025-04-10).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/Screenshots/Screenshot 1 (2025-04-10).png
--------------------------------------------------------------------------------
/Assets/Screenshots/Screenshot 2 (2025-04-10).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/Screenshots/Screenshot 2 (2025-04-10).png
--------------------------------------------------------------------------------
/Assets/Screenshots/Screenshot 3 (2025-04-10).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/Screenshots/Screenshot 3 (2025-04-10).png
--------------------------------------------------------------------------------
/Assets/SmallTile.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/SmallTile.scale-100.png
--------------------------------------------------------------------------------
/Assets/SmallTile.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/SmallTile.scale-125.png
--------------------------------------------------------------------------------
/Assets/SmallTile.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/SmallTile.scale-150.png
--------------------------------------------------------------------------------
/Assets/SmallTile.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/SmallTile.scale-200.png
--------------------------------------------------------------------------------
/Assets/SmallTile.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/SmallTile.scale-400.png
--------------------------------------------------------------------------------
/Assets/SplashScreen.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/SplashScreen.scale-100.png
--------------------------------------------------------------------------------
/Assets/SplashScreen.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/SplashScreen.scale-125.png
--------------------------------------------------------------------------------
/Assets/SplashScreen.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/SplashScreen.scale-150.png
--------------------------------------------------------------------------------
/Assets/SplashScreen.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/SplashScreen.scale-200.png
--------------------------------------------------------------------------------
/Assets/SplashScreen.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/SplashScreen.scale-400.png
--------------------------------------------------------------------------------
/Assets/Square150x150Logo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/Square150x150Logo.scale-100.png
--------------------------------------------------------------------------------
/Assets/Square150x150Logo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/Square150x150Logo.scale-125.png
--------------------------------------------------------------------------------
/Assets/Square150x150Logo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/Square150x150Logo.scale-150.png
--------------------------------------------------------------------------------
/Assets/Square150x150Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/Square150x150Logo.scale-200.png
--------------------------------------------------------------------------------
/Assets/Square150x150Logo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/Square150x150Logo.scale-400.png
--------------------------------------------------------------------------------
/Assets/Square44x44Logo.altform-lightunplated_targetsize-16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/Square44x44Logo.altform-lightunplated_targetsize-16.png
--------------------------------------------------------------------------------
/Assets/Square44x44Logo.altform-lightunplated_targetsize-24.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/Square44x44Logo.altform-lightunplated_targetsize-24.png
--------------------------------------------------------------------------------
/Assets/Square44x44Logo.altform-lightunplated_targetsize-256.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/Square44x44Logo.altform-lightunplated_targetsize-256.png
--------------------------------------------------------------------------------
/Assets/Square44x44Logo.altform-lightunplated_targetsize-32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/Square44x44Logo.altform-lightunplated_targetsize-32.png
--------------------------------------------------------------------------------
/Assets/Square44x44Logo.altform-lightunplated_targetsize-48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/Square44x44Logo.altform-lightunplated_targetsize-48.png
--------------------------------------------------------------------------------
/Assets/Square44x44Logo.altform-unplated_targetsize-16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/Square44x44Logo.altform-unplated_targetsize-16.png
--------------------------------------------------------------------------------
/Assets/Square44x44Logo.altform-unplated_targetsize-24.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/Square44x44Logo.altform-unplated_targetsize-24.png
--------------------------------------------------------------------------------
/Assets/Square44x44Logo.altform-unplated_targetsize-256.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/Square44x44Logo.altform-unplated_targetsize-256.png
--------------------------------------------------------------------------------
/Assets/Square44x44Logo.altform-unplated_targetsize-32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/Square44x44Logo.altform-unplated_targetsize-32.png
--------------------------------------------------------------------------------
/Assets/Square44x44Logo.altform-unplated_targetsize-48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/Square44x44Logo.altform-unplated_targetsize-48.png
--------------------------------------------------------------------------------
/Assets/Square44x44Logo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/Square44x44Logo.scale-100.png
--------------------------------------------------------------------------------
/Assets/Square44x44Logo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/Square44x44Logo.scale-125.png
--------------------------------------------------------------------------------
/Assets/Square44x44Logo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/Square44x44Logo.scale-150.png
--------------------------------------------------------------------------------
/Assets/Square44x44Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/Square44x44Logo.scale-200.png
--------------------------------------------------------------------------------
/Assets/Square44x44Logo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/Square44x44Logo.scale-400.png
--------------------------------------------------------------------------------
/Assets/Square44x44Logo.targetsize-16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/Square44x44Logo.targetsize-16.png
--------------------------------------------------------------------------------
/Assets/Square44x44Logo.targetsize-24.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/Square44x44Logo.targetsize-24.png
--------------------------------------------------------------------------------
/Assets/Square44x44Logo.targetsize-256.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/Square44x44Logo.targetsize-256.png
--------------------------------------------------------------------------------
/Assets/Square44x44Logo.targetsize-32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/Square44x44Logo.targetsize-32.png
--------------------------------------------------------------------------------
/Assets/Square44x44Logo.targetsize-48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/Square44x44Logo.targetsize-48.png
--------------------------------------------------------------------------------
/Assets/StoreLogo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/StoreLogo.scale-100.png
--------------------------------------------------------------------------------
/Assets/StoreLogo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/StoreLogo.scale-125.png
--------------------------------------------------------------------------------
/Assets/StoreLogo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/StoreLogo.scale-150.png
--------------------------------------------------------------------------------
/Assets/StoreLogo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/StoreLogo.scale-200.png
--------------------------------------------------------------------------------
/Assets/StoreLogo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/StoreLogo.scale-400.png
--------------------------------------------------------------------------------
/Assets/Wide310x150Logo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/Wide310x150Logo.scale-100.png
--------------------------------------------------------------------------------
/Assets/Wide310x150Logo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/Wide310x150Logo.scale-125.png
--------------------------------------------------------------------------------
/Assets/Wide310x150Logo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/Wide310x150Logo.scale-150.png
--------------------------------------------------------------------------------
/Assets/Wide310x150Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/Wide310x150Logo.scale-200.png
--------------------------------------------------------------------------------
/Assets/Wide310x150Logo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bluday/awesome-media-player/4a9c2437b235a3f849d50ca4863371403d188c50/Assets/Wide310x150Logo.scale-400.png
--------------------------------------------------------------------------------
/BluDay.AwesomeMediaPlayer.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Assets\Icon-64.ico
5 |
6 |
7 |
8 |
9 | BluDay
10 | © BluDay 2025
11 | Developed by BluDay.
12 | https://github.com/bluday/awesome-media-player
13 | Awesome Media Player
14 |
15 |
16 |
17 |
18 | DISABLE_XAML_GENERATED_MAIN
19 |
20 |
21 |
22 |
23 | 10.0.17763.0
24 | net9.0-windows10.0.26100.0
25 | 10.0.17763.0
26 | 10.0.26100.38
27 |
28 |
29 |
30 |
31 | app.manifest
32 | preview
33 | enable
34 | WinExe
35 | x64;ARM64
36 | BluDay.AwesomeMediaPlayer
37 | win-x64;win-arm64
38 |
39 |
40 |
41 |
42 | True
43 | true
44 | win-$(Platform).pubxml
45 |
46 |
47 |
48 |
49 |
50 | True
51 | \
52 |
53 |
54 |
55 |
56 |
57 | true
58 | true
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 | ..\bluday-dotnet\BluDay.Net\bin\x64\Release\net9.0\BluDay.Net.dll
67 |
68 |
69 |
70 | ..\bluday-dotnet\BluDay.Net.WinUI3\bin\x64\Release\net9.0-windows10.0.26100.0\BluDay.Net.WinUI3.dll
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
103 |
104 |
105 |
106 |
107 |
112 |
113 | true
114 |
115 |
116 |
--------------------------------------------------------------------------------
/BluDay.AwesomeMediaPlayer.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio Version 17
4 | VisualStudioVersion = 17.9.34616.47
5 | MinimumVisualStudioVersion = 10.0.40219.1
6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BluDay.AwesomeMediaPlayer", "BluDay.AwesomeMediaPlayer.csproj", "{CD10DFAC-373B-4E64-97DE-F1DE6ADF5E5A}"
7 | EndProject
8 | Global
9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
10 | Debug|ARM64 = Debug|ARM64
11 | Debug|x64 = Debug|x64
12 | Release|ARM64 = Release|ARM64
13 | Release|x64 = Release|x64
14 | EndGlobalSection
15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
16 | {CD10DFAC-373B-4E64-97DE-F1DE6ADF5E5A}.Debug|ARM64.ActiveCfg = Debug|ARM64
17 | {CD10DFAC-373B-4E64-97DE-F1DE6ADF5E5A}.Debug|ARM64.Build.0 = Debug|ARM64
18 | {CD10DFAC-373B-4E64-97DE-F1DE6ADF5E5A}.Debug|ARM64.Deploy.0 = Debug|ARM64
19 | {CD10DFAC-373B-4E64-97DE-F1DE6ADF5E5A}.Debug|x64.ActiveCfg = Debug|x64
20 | {CD10DFAC-373B-4E64-97DE-F1DE6ADF5E5A}.Debug|x64.Build.0 = Debug|x64
21 | {CD10DFAC-373B-4E64-97DE-F1DE6ADF5E5A}.Debug|x64.Deploy.0 = Debug|x64
22 | {CD10DFAC-373B-4E64-97DE-F1DE6ADF5E5A}.Release|ARM64.ActiveCfg = Release|ARM64
23 | {CD10DFAC-373B-4E64-97DE-F1DE6ADF5E5A}.Release|ARM64.Build.0 = Release|ARM64
24 | {CD10DFAC-373B-4E64-97DE-F1DE6ADF5E5A}.Release|ARM64.Deploy.0 = Release|ARM64
25 | {CD10DFAC-373B-4E64-97DE-F1DE6ADF5E5A}.Release|x64.ActiveCfg = Release|x64
26 | {CD10DFAC-373B-4E64-97DE-F1DE6ADF5E5A}.Release|x64.Build.0 = Release|x64
27 | {CD10DFAC-373B-4E64-97DE-F1DE6ADF5E5A}.Release|x64.Deploy.0 = Release|x64
28 | EndGlobalSection
29 | GlobalSection(SolutionProperties) = preSolution
30 | HideSolutionNode = FALSE
31 | EndGlobalSection
32 | GlobalSection(ExtensibilityGlobals) = postSolution
33 | SolutionGuid = {7212B400-C159-4A8B-84C5-E0223A2AE762}
34 | EndGlobalSection
35 | EndGlobal
36 |
--------------------------------------------------------------------------------
/Controls/MediaControlBar.xaml:
--------------------------------------------------------------------------------
1 |
2 |
11 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
26 |
27 |
31 |
32 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
55 |
56 |
62 |
63 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
111 |
112 |
113 |
117 |
118 |
119 |
120 |
121 |
122 |
125 |
126 |
130 |
131 |
132 |
133 |
134 |
135 |
136 |
144 |
145 |
146 |
147 |
148 |
149 |
150 |
151 |
152 |
153 |
154 |
155 |
156 |
157 |
158 |
159 |
160 |
161 |
--------------------------------------------------------------------------------
/Controls/MediaControlBar.xaml.cs:
--------------------------------------------------------------------------------
1 | namespace BluDay.AwesomeMediaPlayer.Controls;
2 |
3 | ///
4 | /// Represents the media control bar visible on the main view.
5 | ///
6 | public sealed partial class MediaControlBar : UserControl
7 | {
8 | #region Dependency properties
9 | public static readonly DependencyProperty CornerDragHandleVisibilityProperty = DependencyProperty.Register(
10 | nameof(CornerDragHandleVisibility),
11 | typeof(Visibility),
12 | typeof(MenuBar),
13 | new PropertyMetadata(defaultValue: Visibility.Visible)
14 | );
15 | #endregion
16 |
17 | #region Properties
18 | public Visibility CornerDragHandleVisibility
19 | {
20 | get => (Visibility)GetValue(CornerDragHandleVisibilityProperty);
21 | set => SetValue(CornerDragHandleVisibilityProperty, value);
22 | }
23 | #endregion
24 |
25 | ///
26 | /// Initializes a new instance of the class.
27 | ///
28 | public MediaControlBar() => InitializeComponent();
29 | }
--------------------------------------------------------------------------------
/Controls/MenuBar.xaml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
12 |
13 |
14 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
106 |
107 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 |
134 |
135 |
136 |
137 |
138 |
139 |
140 |
141 |
142 |
143 |
144 |
146 |
147 |
148 |
149 |
150 |
151 |
152 |
153 |
154 |
155 |
156 |
157 |
158 |
159 |
160 |
161 |
162 |
164 |
165 |
166 |
168 |
169 |
170 |
171 |
172 |
173 |
174 |
175 |
176 |
177 |
178 |
179 |
181 |
182 |
183 |
184 |
185 |
186 |
187 |
189 |
190 |
191 |
192 |
193 |
194 |
195 |
197 |
198 |
199 |
200 |
201 |
202 |
203 |
205 |
206 |
207 |
208 |
209 |
210 |
211 |
213 |
214 |
215 |
216 |
217 |
218 |
219 |
220 |
221 |
222 |
223 |
224 |
225 |
226 |
227 |
228 |
229 |
230 |
231 |
232 |
233 |
234 |
235 |
236 |
237 |
238 |
239 |
240 |
241 |
242 |
243 |
244 |
245 |
246 |
248 |
249 |
250 |
252 |
253 |
254 |
256 |
257 |
258 |
259 |
260 |
261 |
263 |
264 |
265 |
266 |
267 |
268 |
269 |
271 |
272 |
273 |
275 |
276 |
277 |
279 |
280 |
281 |
282 |
283 |
286 |
287 |
288 |
289 |
290 |
293 |
294 |
295 |
296 |
297 |
300 |
301 |
302 |
303 |
304 |
305 |
306 |
308 |
309 |
310 |
311 |
312 |
314 |
315 |
316 |
317 |
318 |
319 |
320 |
323 |
324 |
325 |
326 |
327 |
328 |
330 |
331 |
332 |
335 |
336 |
337 |
338 |
339 |
340 |
341 |
342 |
344 |
345 |
346 |
347 |
348 |
349 |
350 |
351 |
352 |
353 |
354 |
355 |
356 |
357 |
358 |
359 |
360 |
361 |
362 |
363 |
364 |
365 |
366 |
367 |
368 |
369 |
370 |
371 |
372 |
373 |
374 |
375 |
376 |
377 |
378 |
379 |
380 |
381 |
382 |
383 |
384 |
385 |
387 |
388 |
389 |
390 |
391 |
392 |
393 |
394 |
395 |
396 |
397 |
398 |
400 |
401 |
402 |
405 |
406 |
407 |
408 |
409 |
410 |
411 |
412 |
413 |
414 |
416 |
417 |
418 |
419 |
420 |
421 |
422 |
423 |
424 |
425 |
426 |
427 |
428 |
429 |
430 |
431 |
432 |
433 |
434 |
435 |
436 |
437 |
438 |
439 |
440 |
441 |
442 |
443 |
444 |
446 |
447 |
448 |
449 |
450 |
451 |
452 |
453 |
454 |
455 |
456 |
457 |
458 |
459 |
460 |
461 |
462 |
463 |
464 |
465 |
466 |
467 |
468 |
469 |
470 |
471 |
472 |
473 |
475 |
476 |
477 |
478 |
479 |
480 |
481 |
482 |
483 |
484 |
485 |
486 |
487 |
488 |
489 |
490 |
492 |
493 |
494 |
495 |
496 |
497 |
498 |
499 |
500 |
501 |
502 |
--------------------------------------------------------------------------------
/Controls/MenuBar.xaml.cs:
--------------------------------------------------------------------------------
1 | namespace BluDay.AwesomeMediaPlayer.Controls;
2 |
3 | ///
4 | /// Represents the top menu bar of the application.
5 | ///
6 | public sealed partial class MenuBar : UserControl
7 | {
8 | #region Dependency properties
9 | public static readonly DependencyProperty OpenAboutWindowCommandProperty = DependencyProperty.Register(
10 | nameof(OpenAboutWindowCommand),
11 | typeof(ICommand),
12 | typeof(MenuBar),
13 | new PropertyMetadata(defaultValue: null)
14 | );
15 |
16 | public static readonly DependencyProperty OpenHelpWindowCommandProperty = DependencyProperty.Register(
17 | nameof(OpenHelpWindowCommand),
18 | typeof(ICommand),
19 | typeof(MenuBar),
20 | new PropertyMetadata(defaultValue: null)
21 | );
22 |
23 | public static readonly DependencyProperty OpenPreferencesWindowCommandProperty = DependencyProperty.Register(
24 | nameof(OpenPreferencesWindowCommand),
25 | typeof(ICommand),
26 | typeof(MenuBar),
27 | new PropertyMetadata(defaultValue: null)
28 | );
29 |
30 | public static readonly DependencyProperty QuitCommandProperty = DependencyProperty.Register(
31 | nameof(QuitCommand),
32 | typeof(ICommand),
33 | typeof(MenuBar),
34 | new PropertyMetadata(defaultValue: null)
35 | );
36 | #endregion
37 |
38 | #region Properties
39 | ///
40 | /// Gets or sets the open about window command.
41 | ///
42 | public ICommand OpenAboutWindowCommand
43 | {
44 | get => (ICommand)GetValue(OpenAboutWindowCommandProperty);
45 | set => SetValue(OpenAboutWindowCommandProperty, value);
46 | }
47 |
48 | ///
49 | /// Gets or sets the open help window command.
50 | ///
51 | public ICommand OpenHelpWindowCommand
52 | {
53 | get => (ICommand)GetValue(OpenHelpWindowCommandProperty);
54 | set => SetValue(OpenHelpWindowCommandProperty, value);
55 | }
56 |
57 | ///
58 | /// Gets or sets the open preferences window command.
59 | ///
60 | public ICommand OpenPreferencesWindowCommand
61 | {
62 | get => (ICommand)GetValue(OpenPreferencesWindowCommandProperty);
63 | set => SetValue(OpenPreferencesWindowCommandProperty, value);
64 | }
65 |
66 | ///
67 | /// Gets or sets the quit command.
68 | ///
69 | public ICommand QuitCommand
70 | {
71 | get => (ICommand)GetValue(QuitCommandProperty);
72 | set => SetValue(QuitCommandProperty, value);
73 | }
74 | #endregion
75 |
76 | ///
77 | /// Initializes a new instance of the class.
78 | ///
79 | public MenuBar() => InitializeComponent();
80 | }
--------------------------------------------------------------------------------
/Controls/NavigationViewHeaderBar.xaml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
35 |
36 |
37 |
41 |
42 |
43 |
--------------------------------------------------------------------------------
/Controls/NavigationViewHeaderBar.xaml.cs:
--------------------------------------------------------------------------------
1 | namespace BluDay.AwesomeMediaPlayer.Controls;
2 |
3 | ///
4 | /// Represents the header bar of the navigation view in MainView.xaml.
5 | ///
6 | public sealed partial class NavigationViewHeaderBar : UserControl
7 | {
8 | #region Dependency properties
9 | // TODO: Add dependency properties.
10 | #endregion
11 |
12 | #region Properties
13 | // TODO: Add properties.
14 | #endregion
15 |
16 | ///
17 | /// Initializes a new instance of the class.
18 | ///
19 | public NavigationViewHeaderBar() => InitializeComponent();
20 | }
--------------------------------------------------------------------------------
/Controls/TitleBar.xaml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
24 |
25 |
26 |
30 |
31 |
--------------------------------------------------------------------------------
/Controls/TitleBar.xaml.cs:
--------------------------------------------------------------------------------
1 | namespace BluDay.AwesomeMediaPlayer.Controls;
2 |
3 | ///
4 | /// Interaction logic for TitleBar.xaml.
5 | ///
6 | public sealed partial class TitleBar : UserControl
7 | {
8 | #region Dependency properties
9 | ///
10 | /// Identifies the dependency property.
11 | ///
12 | public static readonly DependencyProperty IconProperty = DependencyProperty.Register(
13 | nameof(Icon),
14 | typeof(ImageSource),
15 | typeof(TitleBar),
16 | new PropertyMetadata(defaultValue: null)
17 | );
18 |
19 | ///
20 | /// Identifies the dependency property.
21 | ///
22 | public static readonly DependencyProperty TitleProperty = DependencyProperty.Register(
23 | nameof(Title),
24 | typeof(string),
25 | typeof(TitleBar),
26 | new PropertyMetadata(defaultValue: null)
27 | );
28 | #endregion
29 |
30 | #region Properties
31 | ///
32 | /// Gets the image source for the icon.
33 | ///
34 | public ImageSource? Icon
35 | {
36 | get => GetValue(IconProperty) as ImageSource;
37 | set => SetValue(IconProperty, value);
38 | }
39 |
40 | ///
41 | /// Gets the title value of the title bar.
42 | ///
43 | public string? Title
44 | {
45 | get => GetValue(TitleProperty) as string;
46 | set => SetValue(TitleProperty, value);
47 | }
48 | #endregion
49 |
50 | #region Constructor
51 | ///
52 | /// Initializes a new instance of the class.
53 | ///
54 | public TitleBar()
55 | {
56 | InitializeComponent();
57 | }
58 | #endregion
59 | }
--------------------------------------------------------------------------------
/Controls/Views/AboutView.xaml:
--------------------------------------------------------------------------------
1 |
2 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
50 |
51 |
52 |
55 |
56 |
57 |
58 |
64 |
65 |
66 |
67 |
68 |
69 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
87 |
88 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
--------------------------------------------------------------------------------
/Controls/Views/AboutView.xaml.cs:
--------------------------------------------------------------------------------
1 | namespace BluDay.AwesomeMediaPlayer.Controls.Views;
2 |
3 | ///
4 | /// Interaction logic for AboutView.xaml
5 | ///
6 | public sealed partial class AboutView : UserControl
7 | {
8 | ///
9 | /// Initializes a new instance of the class.
10 | ///
11 | public AboutView() => InitializeComponent();
12 |
13 | private async void MarkdownTextBlock_LinkClicked(object sender, LinkClickedEventArgs e)
14 | {
15 | if (DataContext is AboutViewModel viewModel)
16 | {
17 | await viewModel.OnLinkClickedAsync(e);
18 | }
19 | }
20 | }
--------------------------------------------------------------------------------
/Controls/Views/CurrentMediaInformationGeneralView.xaml:
--------------------------------------------------------------------------------
1 |
2 |
13 |
16 |
--------------------------------------------------------------------------------
/Controls/Views/CurrentMediaInformationGeneralView.xaml.cs:
--------------------------------------------------------------------------------
1 | namespace BluDay.AwesomeMediaPlayer.Controls.Views;
2 |
3 | ///
4 | /// Interaction logic for CurrentMediaInformationGeneralView.xaml.
5 | ///
6 | public sealed partial class CurrentMediaInformationGeneralView : UserControl
7 | {
8 | ///
9 | /// Initializes a new instance of the class.
10 | ///
11 | public CurrentMediaInformationGeneralView()
12 | {
13 | InitializeComponent();
14 | }
15 | }
--------------------------------------------------------------------------------
/Controls/Views/HelpView.xaml:
--------------------------------------------------------------------------------
1 |
2 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
32 |
33 |
34 |
35 |
36 |
40 |
41 |
--------------------------------------------------------------------------------
/Controls/Views/HelpView.xaml.cs:
--------------------------------------------------------------------------------
1 | namespace BluDay.AwesomeMediaPlayer.Controls.Views;
2 |
3 | ///
4 | /// Interaction logic for HelpView.xaml
5 | ///
6 | public sealed partial class HelpView : UserControl
7 | {
8 | ///
9 | /// Initializes a new instance of the class.
10 | ///
11 | public HelpView() => InitializeComponent();
12 |
13 | private async void MarkdownTextBlock_LinkClicked(object sender, LinkClickedEventArgs e)
14 | {
15 | if (DataContext is HelpViewModel viewModel)
16 | {
17 | await viewModel.OnLinkClickedAsync(e);
18 | }
19 | }
20 | }
--------------------------------------------------------------------------------
/Controls/Views/MainView.xaml:
--------------------------------------------------------------------------------
1 |
2 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
29 |
30 |
31 |
32 |
33 |
34 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
131 |
132 |
133 |
134 |
135 |
136 |
137 |
138 |
139 |
140 |
141 |
142 |
143 |
144 |
145 |
146 |
147 |
148 |
149 |
150 |
151 |
152 |
153 |
154 |
155 |
156 |
157 |
158 |
159 |
160 |
161 |
162 |
163 |
164 |
165 |
166 |
173 |
174 |
175 |
176 |
177 |
178 |
179 |
180 |
181 |
182 |
183 |
184 |
185 |
186 |
187 |
188 |
189 |
190 |
191 |
192 |
193 |
194 |
198 |
199 |
200 |
201 |
202 |
205 |
206 |
--------------------------------------------------------------------------------
/Controls/Views/MainView.xaml.cs:
--------------------------------------------------------------------------------
1 | namespace BluDay.AwesomeMediaPlayer.Controls.Views;
2 |
3 | ///
4 | /// Represents the interaction logic for the main view.
5 | ///
6 | public sealed partial class MainView : UserControl
7 | {
8 | ///
9 | /// Initializes a new instance of the class.
10 | ///
11 | public MainView() => InitializeComponent();
12 | }
--------------------------------------------------------------------------------
/Controls/Views/MediaLibraryView.xaml:
--------------------------------------------------------------------------------
1 |
2 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/Controls/Views/MediaLibraryView.xaml.cs:
--------------------------------------------------------------------------------
1 | namespace BluDay.AwesomeMediaPlayer.Controls.Views;
2 |
3 | ///
4 | /// Interaction logic for MediaLibraryView.xaml
5 | ///
6 | public sealed partial class MediaLibraryView : UserControl
7 | {
8 | ///
9 | /// Initializes a new instance of the class.
10 | ///
11 | public MediaLibraryView() => InitializeComponent();
12 | }
--------------------------------------------------------------------------------
/Controls/Views/PreferencesView.xaml:
--------------------------------------------------------------------------------
1 |
2 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
40 |
41 |
42 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
91 |
92 |
93 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
132 |
133 |
134 |
135 |
136 |
137 |
138 |
139 |
140 |
141 |
142 |
143 |
144 |
145 |
146 |
147 |
148 |
149 |
150 |
151 |
154 |
155 |
156 |
159 |
160 |
161 |
162 |
163 |
164 |
165 |
166 |
167 |
168 |
171 |
172 |
173 |
174 |
175 |
176 |
177 |
178 |
179 |
180 |
183 |
184 |
185 |
186 |
187 |
188 |
189 |
190 |
191 |
192 |
195 |
196 |
197 |
198 |
199 |
200 |
201 |
202 |
203 |
204 |
207 |
208 |
209 |
210 |
211 |
212 |
213 |
214 |
215 |
216 |
219 |
220 |
221 |
222 |
223 |
224 |
225 |
226 |
227 |
228 |
229 |
230 |
231 |
232 |
233 |
234 |
235 |
236 |
237 |
238 |
241 |
242 |
243 |
246 |
247 |
248 |
249 |
250 |
251 |
252 |
253 |
254 |
255 |
258 |
259 |
260 |
261 |
262 |
263 |
264 |
265 |
266 |
267 |
270 |
271 |
272 |
273 |
274 |
275 |
276 |
277 |
280 |
281 |
282 |
286 |
287 |
288 |
289 |
293 |
294 |
295 |
296 |
297 |
298 |
299 |
300 |
301 |
302 |
303 |
304 |
305 |
306 |
307 |
308 |
309 |
312 |
313 |
314 |
317 |
318 |
319 |
320 |
321 |
322 |
323 |
324 |
325 |
326 |
329 |
330 |
331 |
332 |
333 |
334 |
335 |
336 |
337 |
338 |
339 |
340 |
341 |
342 |
343 |
344 |
345 |
346 |
347 |
348 |
351 |
352 |
353 |
356 |
357 |
358 |
359 |
360 |
361 |
362 |
363 |
364 |
365 |
368 |
369 |
370 |
371 |
372 |
373 |
374 |
375 |
376 |
377 |
380 |
381 |
382 |
383 |
384 |
385 |
386 |
387 |
388 |
389 |
392 |
393 |
394 |
395 |
396 |
397 |
398 |
399 |
400 |
401 |
404 |
405 |
406 |
407 |
408 |
409 |
410 |
411 |
412 |
413 |
414 |
415 |
416 |
417 |
418 |
419 |
420 |
421 |
422 |
423 |
426 |
427 |
428 |
431 |
432 |
433 |
434 |
435 |
436 |
437 |
438 |
439 |
440 |
443 |
444 |
445 |
446 |
447 |
448 |
449 |
450 |
451 |
452 |
455 |
456 |
457 |
458 |
459 |
460 |
461 |
462 |
463 |
464 |
467 |
468 |
469 |
470 |
471 |
472 |
473 |
474 |
475 |
476 |
477 |
478 |
479 |
480 |
481 |
482 |
483 |
484 |
485 |
486 |
489 |
490 |
491 |
495 |
497 |
498 |
499 |
501 |
503 |
504 |
505 |
506 |
507 |
508 |
509 |
510 |
511 |
512 |
513 |
514 |
515 |
516 |
517 |
518 |
519 |
522 |
523 |
524 |
525 |
--------------------------------------------------------------------------------
/Controls/Views/PreferencesView.xaml.cs:
--------------------------------------------------------------------------------
1 | namespace BluDay.AwesomeMediaPlayer.Controls.Views;
2 |
3 | ///
4 | /// Interaction logic for PreferencesView.xaml
5 | ///
6 | public sealed partial class PreferencesView : UserControl
7 | {
8 | ///
9 | /// Initializes a new instance of the class.
10 | ///
11 | public PreferencesView() => InitializeComponent();
12 | }
--------------------------------------------------------------------------------
/Controls/Windows/AboutWindow.xaml:
--------------------------------------------------------------------------------
1 |
2 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
28 |
29 |
30 |
32 |
33 |
34 |
42 |
43 |
--------------------------------------------------------------------------------
/Controls/Windows/AboutWindow.xaml.cs:
--------------------------------------------------------------------------------
1 | namespace BluDay.AwesomeMediaPlayer.Controls.Windows;
2 |
3 | ///
4 | /// Represents the about window control.
5 | ///
6 | public sealed partial class AboutWindow : Window
7 | {
8 | #region Properties
9 | ///
10 | /// Gets the current view model instance.
11 | ///
12 | public AboutWindowViewModel ViewModel { get; }
13 | #endregion
14 |
15 | ///
16 | /// Initializes a new instance of the class.
17 | ///
18 | ///
19 | /// The view model instance.
20 | ///
21 | public AboutWindow(AboutWindowViewModel viewModel)
22 | {
23 | ViewModel = viewModel;
24 |
25 | InitializeComponent();
26 |
27 | viewModel.TitleBarControl = AppTitleBar;
28 |
29 | viewModel.SetWindow(this);
30 | }
31 | }
--------------------------------------------------------------------------------
/Controls/Windows/CurrentMediaInformationWindow.xaml:
--------------------------------------------------------------------------------
1 |
2 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
30 |
31 |
32 |
33 |
35 |
36 |
38 |
39 |
41 |
42 |
44 |
45 |
46 |
47 |
49 |
50 |
51 |
56 |
57 |
--------------------------------------------------------------------------------
/Controls/Windows/CurrentMediaInformationWindow.xaml.cs:
--------------------------------------------------------------------------------
1 | namespace BluDay.AwesomeMediaPlayer.Controls.Windows;
2 |
3 | ///
4 | /// Represents a customizable shell window that hosts and manages a view model.
5 | /// This window can be used independently or within a Frame for navigation.
6 | ///
7 | public sealed partial class CurrentMediaInformationWindow : Window
8 | {
9 | #region Properties
10 | ///
11 | /// Gets the view model instance.
12 | ///
13 | public CurrentMediaInformationWindowViewModel ViewModel { get; }
14 | #endregion
15 |
16 | ///
17 | /// Initializes a new instance of the class.
18 | ///
19 | ///
20 | /// The view model instance.
21 | ///
22 | public CurrentMediaInformationWindow(CurrentMediaInformationWindowViewModel viewModel)
23 | {
24 | ViewModel = viewModel;
25 |
26 | InitializeComponent();
27 |
28 | viewModel.TitleBarControl = AppTitleBar;
29 |
30 | viewModel.SetWindow(this);
31 | }
32 | }
--------------------------------------------------------------------------------
/Controls/Windows/HelpWindow.xaml:
--------------------------------------------------------------------------------
1 |
2 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
27 |
28 |
29 |
31 |
32 |
33 |
41 |
42 |
--------------------------------------------------------------------------------
/Controls/Windows/HelpWindow.xaml.cs:
--------------------------------------------------------------------------------
1 | namespace BluDay.AwesomeMediaPlayer.Controls.Windows;
2 |
3 | ///
4 | /// Represents the help window control.
5 | ///
6 | public sealed partial class HelpWindow : Window
7 | {
8 | #region Properties
9 | ///
10 | /// Gets the view model instance.
11 | ///
12 | public HelpWindowViewModel ViewModel { get; }
13 | #endregion
14 |
15 | ///
16 | /// Initializes a new instance of the class.
17 | ///
18 | ///
19 | /// The corresponding view model instance as a transient.
20 | ///
21 | public HelpWindow(HelpWindowViewModel viewModel)
22 | {
23 | ViewModel = viewModel;
24 |
25 | InitializeComponent();
26 |
27 | viewModel.TitleBarControl = AppTitleBar;
28 |
29 | viewModel.SetWindow(this);
30 | }
31 | }
--------------------------------------------------------------------------------
/Controls/Windows/MainWindow.xaml:
--------------------------------------------------------------------------------
1 |
2 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
28 |
29 |
30 |
32 |
33 |
34 |
42 |
43 |
--------------------------------------------------------------------------------
/Controls/Windows/MainWindow.xaml.cs:
--------------------------------------------------------------------------------
1 | namespace BluDay.AwesomeMediaPlayer.Controls.Windows;
2 |
3 | ///
4 | /// Represents a customizable shell window that hosts and manages a view model.
5 | /// This window can be used independently or within a Frame for navigation.
6 | ///
7 | public sealed partial class MainWindow : Window
8 | {
9 | #region Properties
10 | ///
11 | /// Gets the view model instance.
12 | ///
13 | public MainWindowViewModel ViewModel { get; }
14 | #endregion
15 |
16 | ///
17 | /// Initializes a new instance of the class.
18 | ///
19 | ///
20 | /// The view model instance.
21 | ///
22 | public MainWindow(MainWindowViewModel viewModel)
23 | {
24 | ViewModel = viewModel;
25 |
26 | InitializeComponent();
27 |
28 | viewModel.TitleBarControl = AppTitleBar;
29 |
30 | viewModel.SetWindow(this);
31 | }
32 | }
--------------------------------------------------------------------------------
/Controls/Windows/PreferencesWindow.xaml:
--------------------------------------------------------------------------------
1 |
2 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
28 |
29 |
30 |
32 |
33 |
34 |
42 |
43 |
--------------------------------------------------------------------------------
/Controls/Windows/PreferencesWindow.xaml.cs:
--------------------------------------------------------------------------------
1 | namespace BluDay.AwesomeMediaPlayer.Controls.Windows;
2 |
3 | ///
4 | /// Represents a customizable shell window that hosts and manages a view model.
5 | /// This window can be used independently or within a Frame for navigation.
6 | ///
7 | public sealed partial class PreferencesWindow : Window
8 | {
9 | #region Properties
10 | ///
11 | /// Gets the view model instance.
12 | ///
13 | public PreferencesWindowViewModel ViewModel { get; }
14 | #endregion
15 |
16 | ///
17 | /// Initializes a new instance of the class.
18 | ///
19 | ///
20 | /// The view model instance.
21 | ///
22 | public PreferencesWindow(PreferencesWindowViewModel viewModel)
23 | {
24 | ViewModel = viewModel;
25 |
26 | InitializeComponent();
27 |
28 | viewModel.TitleBarControl = AppTitleBar;
29 |
30 | viewModel.SetWindow(this);
31 | }
32 | }
--------------------------------------------------------------------------------
/Domain/ViewModels/AboutViewModel.cs:
--------------------------------------------------------------------------------
1 | namespace BluDay.AwesomeMediaPlayer.Domain.ViewModels;
2 |
3 | ///
4 | /// Represents the view model class for the about view.
5 | ///
6 | public sealed partial class AboutViewModel : ObservableObject
7 | {
8 | #region Properties
9 | ///
10 | /// Gets the raw Markdown text.
11 | ///
12 | public string Text { get; } = GetRawDefaultMarkdownText();
13 | #endregion
14 |
15 | ///
16 | /// Handles the link-clicked event by launching the provided URI.
17 | ///
18 | ///
19 | /// Contains the link that was clicked.
20 | ///
21 | public async Task OnLinkClickedAsync(LinkClickedEventArgs e)
22 | {
23 | await Launcher.LaunchUriAsync(new Uri(e.Link));
24 | }
25 |
26 | public static string GetRawDefaultMarkdownText()
27 | {
28 | return @"VLC media player is a free and open source media player, encoder, and streamer made by the volunteers of the [VideoLAN](https://www.videolan.org/) community.
29 |
30 | VLC uses its internal codecs, works on essentially every popular platform, and can read almost all files, CDs, DVDs, network streams, capture cards and other media formats!
31 |
32 | [Help and join us!](https://www.videolan.org/contribute.html)";
33 | }
34 | }
--------------------------------------------------------------------------------
/Domain/ViewModels/CurrentMediaInformationGeneralViewModel.cs:
--------------------------------------------------------------------------------
1 | namespace BluDay.AwesomeMediaPlayer.Domain.ViewModels;
2 |
3 | ///
4 | /// Represents the view model class for the current media information view.
5 | ///
6 | public sealed partial class CurrentMediaInformationGeneralViewModel : ObservableObject
7 | {
8 | ///
9 | /// Initialize a new instance of the class.
10 | ///
11 | public CurrentMediaInformationGeneralViewModel()
12 | {
13 | // TODO: Set fields and properties.
14 | }
15 | }
--------------------------------------------------------------------------------
/Domain/ViewModels/HelpViewModel.cs:
--------------------------------------------------------------------------------
1 | namespace BluDay.AwesomeMediaPlayer.Domain.ViewModels;
2 |
3 | ///
4 | /// Represents the view model class for the help view.
5 | ///
6 | public sealed partial class HelpViewModel : ObservableObject
7 | {
8 | #region Properties
9 | ///
10 | /// Gets the raw Markdown text.
11 | ///
12 | public string Text { get; } = GetRawMarkdownText();
13 |
14 | ///
15 | /// Gets or sets the close window command.
16 | ///
17 | public ICommand? CloseWindowCommand { get; set; }
18 | #endregion
19 |
20 | ///
21 | /// Handles the link-clicked event by launching the provided URI.
22 | ///
23 | ///
24 | /// Contains the link that was clicked.
25 | ///
26 | public async Task OnLinkClickedAsync(LinkClickedEventArgs e)
27 | {
28 | await Launcher.LaunchUriAsync(new Uri(e.Link));
29 | }
30 |
31 | public static string GetRawMarkdownText()
32 | {
33 | return @"# Welcome to VLC media player Help
34 |
35 | ##### Documentation
36 |
37 | You can find VLC documentation on VideoLAN's [wiki](https://wiki.videolan.org) website.
38 |
39 | If you are a newcomer to VLC media player, please read the
40 | [Introduction to VLC media player](https://wiki.videolan.org/Documentation:Introduction/).
41 |
42 | You will find some information on how to use the player in the
43 | ""[How to play files with VLC media player](https://wiki.videolan.org/Documentation:Play/)"" document.
44 |
45 | For all the saving, converting, transcoding, encoding, muxing, and streaming tasks, you
46 | should find useful information in the [Streaming Documentation](https://wiki.videolan.org/Documentation:Streaming/).
47 |
48 | If you are unsure about terminology, please consult the [knowledge base](https://wiki.videolan.org/Documentation/Glossary/).
49 |
50 | To understand the main keyboard shortcuts, read the [shortcuts](https://wiki.videolan.org/Shortcuts/) page.
51 |
52 | ##### Help
53 |
54 | Before asking any questions, please refer to the [FAQ](https://wiki.videolan.org/Frequently_Asked_Questions/).
55 |
56 | You might then get (and give) help on the [Forums](https://forum.videolan.org/), the [mailing-lists](https://www.videolan.org/support/lists.html), or our IRC channel
57 | (_#videolan_ on irc.freenode.net).
58 |
59 | ##### Contribute to the Project
60 |
61 | You can help the VideoLAN project giving some of your time to help the community, to design skins, to
62 | translate the documentation, to test and to code. You can also give funds
63 | and material to help us. And of course, you can promote VLC media player.";
64 | }
65 | }
--------------------------------------------------------------------------------
/Domain/ViewModels/MainViewModel.cs:
--------------------------------------------------------------------------------
1 | namespace BluDay.AwesomeMediaPlayer.Domain.ViewModels;
2 |
3 | ///
4 | /// Represents the view model class for the main view.
5 | ///
6 | public sealed partial class MainViewModel : ObservableObject
7 | {
8 | private readonly ImplementationProvider _windowFactory;
9 |
10 | #region Properties
11 | ///
12 | /// Gets the media library view model instance.
13 | ///
14 | public MediaLibraryViewModel MediaLibraryViewModel { get; }
15 |
16 | ///
17 | /// Gets or sets the close window command.
18 | ///
19 | public ICommand? CloseWindowCommand { get; set; }
20 | #endregion
21 |
22 | ///
23 | /// Initializes a new instance of the class.
24 | ///
25 | ///
26 | /// A transient media library view model instance.
27 | ///
28 | ///
29 | /// A window factory.
30 | ///
31 | public MainViewModel(
32 | MediaLibraryViewModel mediaLibraryViewModel,
33 | ImplementationProvider windowFactory)
34 | {
35 | _windowFactory = windowFactory;
36 |
37 | MediaLibraryViewModel = mediaLibraryViewModel;
38 | }
39 |
40 | private TWindow CreateWindow() where TWindow : Window
41 | {
42 | var window = (TWindow)_windowFactory.GetInstance(typeof(TWindow));
43 |
44 | window.Activate();
45 |
46 | return window;
47 | }
48 |
49 | ///
50 | /// Activates a new instance and brings it to the foreground.
51 | ///
52 | [RelayCommand]
53 | public void OpenAboutWindow()
54 | {
55 | CreateWindow();
56 | }
57 |
58 | ///
59 | /// Activates a new instance and brings it to the foreground.
60 | ///
61 | [RelayCommand]
62 | public void OpenHelpWindow()
63 | {
64 | CreateWindow();
65 | }
66 |
67 | ///
68 | /// Activates a new instance and brings it to the foreground.
69 | ///
70 | [RelayCommand]
71 | public void OpenPreferencesWindow()
72 | {
73 | CreateWindow();
74 | }
75 |
76 | ///
77 | /// Activates a new instance and brings it to the
78 | /// foreground.
79 | ///
80 | [RelayCommand]
81 | public void OpenCurrentMediaInformationWindow()
82 | {
83 | CreateWindow();
84 | }
85 | }
--------------------------------------------------------------------------------
/Domain/ViewModels/MediaLibraryViewModel.cs:
--------------------------------------------------------------------------------
1 | namespace BluDay.AwesomeMediaPlayer.Domain.ViewModels;
2 |
3 | ///
4 | /// Represents the view model class for the media library view.
5 | ///
6 | public sealed partial class MediaLibraryViewModel : ObservableObject
7 | {
8 | ///
9 | /// Handles the link-clicked event by launching the provided URI.
10 | ///
11 | ///
12 | /// Contains the link that was clicked.
13 | ///
14 | public async Task OnLinkClickedAsync(LinkClickedEventArgs e)
15 | {
16 | await Launcher.LaunchUriAsync(new Uri(e.Link));
17 | }
18 | }
--------------------------------------------------------------------------------
/Domain/ViewModels/PreferencesViewModel.cs:
--------------------------------------------------------------------------------
1 | namespace BluDay.AwesomeMediaPlayer.Domain.ViewModels;
2 |
3 | ///
4 | /// Represents the view model class for the preferences window and view.
5 | ///
6 | public sealed partial class PreferencesViewModel : ObservableObject
7 | {
8 | ///
9 | /// Initialize a new instance of the class.
10 | ///
11 | public PreferencesViewModel()
12 | {
13 | // TODO: Set fields and properties.
14 | }
15 | }
--------------------------------------------------------------------------------
/Domain/ViewModels/Windows/AboutWindowViewModel.cs:
--------------------------------------------------------------------------------
1 | namespace BluDay.AwesomeMediaPlayer.Domain.ViewModels;
2 |
3 | ///
4 | /// Represents the view model class for the about window.
5 | ///
6 | public sealed partial class AboutWindowViewModel : WindowViewModel
7 | {
8 | #region Properties
9 | ///
10 | /// Gets the current about view model instance
11 | ///
12 | public AboutViewModel AboutViewModel { get; }
13 | #endregion
14 |
15 | #region Constructor
16 | ///
17 | /// Initializes a new instance of the class.
18 | ///
19 | ///
20 | /// The view model for the about view, as a transient.
21 | ///
22 | ///
23 | /// The application resource loader.
24 | ///
25 | public AboutWindowViewModel(AboutViewModel aboutViewModel, ResourceLoader resourceLoader)
26 | {
27 | DefaultAppWindowConfiguration = GetDefaultAppWindowConfiguration(resourceLoader);
28 | DefaultWindowConfiguration = GetDefaultWindowConfiguration(resourceLoader);
29 |
30 | AboutViewModel = aboutViewModel;
31 | }
32 | #endregion
33 |
34 | #region Static configuration methods
35 | ///
36 | /// Gets default configuration for the instance.
37 | ///
38 | ///
39 | /// An instance of type for loading resources, such as titles
40 | /// and icon paths.
41 | ///
42 | ///
43 | /// The configuration instance.
44 | ///
45 | public static AppWindowConfiguration GetDefaultAppWindowConfiguration(ResourceLoader resourceLoader)
46 | {
47 | return new()
48 | {
49 | IconPath = resourceLoader.GetString("AppIconPath/64x64"),
50 | Size = new SizeInt32((int)(750 * 1.5), (int)(380 * 1.5)),
51 | };
52 | }
53 |
54 | ///
55 | /// Gets default configuration for the window.
56 | ///
57 | ///
58 | /// An instance of type for loading resources, such as titles
59 | /// and icon paths.
60 | ///
61 | ///
62 | /// The configuration instance.
63 | ///
64 | public static WindowConfiguration GetDefaultWindowConfiguration(ResourceLoader resourceLoader)
65 | {
66 | return new()
67 | {
68 | ExtendsContentIntoTitleBar = true,
69 | Title = resourceLoader.GetString("AboutWindow/Title")
70 | };
71 | }
72 | #endregion
73 | }
--------------------------------------------------------------------------------
/Domain/ViewModels/Windows/CurrentMediaInformationWindowViewModel.cs:
--------------------------------------------------------------------------------
1 | namespace BluDay.AwesomeMediaPlayer.Domain.ViewModels;
2 |
3 | ///
4 | /// Represents the view model for the current media information window.
5 | ///
6 | public sealed partial class CurrentMediaInformationWindowViewModel : WindowViewModel
7 | {
8 | #region Properties
9 | ///
10 | /// Gets the current current media information view model instance.
11 | ///
12 | public CurrentMediaInformationGeneralViewModel CurrentMediaInformationGeneralViewModel { get; }
13 |
14 | ///
15 | /// Gets the command for the closing the window.
16 | ///
17 | public IRelayCommand CloseCommand { get; }
18 | #endregion
19 |
20 | #region Constructor
21 | ///
22 | /// Initializes a new instance of the class.
23 | ///
24 | ///
25 | /// The view model for the current media information view, as a transient.
26 | ///
27 | ///
28 | /// The application resource loader.
29 | ///
30 | public CurrentMediaInformationWindowViewModel(
31 | CurrentMediaInformationGeneralViewModel currentMediaInformationGeneralViewModel,
32 | ResourceLoader resourceLoader)
33 | {
34 | DefaultAppWindowConfiguration = GetDefaultAppWindowConfiguration(resourceLoader);
35 | DefaultWindowConfiguration = GetDefaultWindowConfiguration(resourceLoader);
36 |
37 | CurrentMediaInformationGeneralViewModel = currentMediaInformationGeneralViewModel;
38 |
39 | CloseCommand = new RelayCommand(Close);
40 | }
41 | #endregion
42 |
43 | #region Static configuration methods
44 | ///
45 | /// Gets default configuration for the instance.
46 | ///
47 | ///
48 | /// An instance of type for loading resources, such as titles
49 | /// and icon paths.
50 | ///
51 | ///
52 | /// The configuration instance.
53 | ///
54 | public static AppWindowConfiguration GetDefaultAppWindowConfiguration(ResourceLoader resourceLoader)
55 | {
56 | return new()
57 | {
58 | IconPath = resourceLoader.GetString("AppIconPath/64x64"),
59 | Size = new SizeInt32((int)(800 * 1.5), (int)(700 * 1.5)),
60 | };
61 | }
62 |
63 | ///
64 | /// Gets default configuration for the window.
65 | ///
66 | ///
67 | /// An instance of type for loading resources, such as titles
68 | /// and icon paths.
69 | ///
70 | ///
71 | /// The configuration instance.
72 | ///
73 | public static WindowConfiguration GetDefaultWindowConfiguration(ResourceLoader resourceLoader)
74 | {
75 | return new()
76 | {
77 | ExtendsContentIntoTitleBar = true,
78 | Title = resourceLoader.GetString("CurrentMediaInformationWindow/Title")
79 | };
80 | }
81 | #endregion
82 | }
--------------------------------------------------------------------------------
/Domain/ViewModels/Windows/HelpWindowViewModel.cs:
--------------------------------------------------------------------------------
1 | namespace BluDay.AwesomeMediaPlayer.Domain.ViewModels;
2 |
3 | ///
4 | /// Represents the view model class for the help window.
5 | ///
6 | public sealed partial class HelpWindowViewModel : WindowViewModel
7 | {
8 | #region Properties
9 | ///
10 | /// Gets the current help view model instance.
11 | ///
12 | public HelpViewModel HelpViewModel { get; }
13 | #endregion
14 |
15 | #region Constructor
16 | ///
17 | /// Initializes a new instance of the class.
18 | ///
19 | ///
20 | /// The view model for the help view, as a transient.
21 | ///
22 | ///
23 | /// The application resource loader.
24 | ///
25 | public HelpWindowViewModel(HelpViewModel helpViewModel, ResourceLoader resourceLoader)
26 | {
27 | DefaultAppWindowConfiguration = GetDefaultAppWindowConfiguration(resourceLoader);
28 | DefaultWindowConfiguration = GetDefaultWindowConfiguration(resourceLoader);
29 |
30 | helpViewModel.CloseWindowCommand = CloseWindowCommand;
31 |
32 | HelpViewModel = helpViewModel;
33 | }
34 | #endregion
35 |
36 | #region Commands
37 | ///
38 | /// Closes the current window.
39 | ///
40 | [RelayCommand]
41 | public void CloseWindow()
42 | {
43 | Close();
44 | }
45 | #endregion
46 |
47 | #region Static configuration methods
48 | ///
49 | /// Gets default configuration for the instance.
50 | ///
51 | ///
52 | /// An instance of type for loading resources, such as titles
53 | /// and icon paths.
54 | ///
55 | ///
56 | /// The configuration instance.
57 | ///
58 | public static AppWindowConfiguration GetDefaultAppWindowConfiguration(ResourceLoader resourceLoader)
59 | {
60 | return new()
61 | {
62 | IconPath = resourceLoader.GetString("AppIconPath/64x64"),
63 | Size = new SizeInt32((int)(600 * 1.5), (int)(600 * 1.5)),
64 | };
65 | }
66 |
67 | ///
68 | /// Gets default configuration for the window.
69 | ///
70 | ///
71 | /// An instance of type for loading resources, such as titles
72 | /// and icon paths.
73 | ///
74 | ///
75 | /// The configuration instance.
76 | ///
77 | public static WindowConfiguration GetDefaultWindowConfiguration(ResourceLoader resourceLoader)
78 | {
79 | return new()
80 | {
81 | ExtendsContentIntoTitleBar = true,
82 | Title = resourceLoader.GetString("HelpWindow/Title")
83 | };
84 | }
85 | #endregion
86 | }
--------------------------------------------------------------------------------
/Domain/ViewModels/Windows/MainWindowViewModel.cs:
--------------------------------------------------------------------------------
1 | namespace BluDay.AwesomeMediaPlayer.Domain.ViewModels;
2 |
3 | ///
4 | /// Represents the view model for the main window.
5 | ///
6 | public sealed partial class MainWindowViewModel : WindowViewModel
7 | {
8 | #region Properties
9 | ///
10 | /// Gets the current main view model instance.
11 | ///
12 | public MainViewModel MainViewModel { get; }
13 | #endregion
14 |
15 | #region Constructor
16 | ///
17 | /// Initializes a new instance of the class.
18 | ///
19 | ///
20 | /// The view model for the main view, as a transient.
21 | ///
22 | ///
23 | /// The application resource loader.
24 | ///
25 | public MainWindowViewModel(MainViewModel mainViewModel, ResourceLoader resourceLoader)
26 | {
27 | DefaultAppWindowConfiguration = GetDefaultAppWindowConfiguration(resourceLoader);
28 | DefaultWindowConfiguration = GetDefaultWindowConfiguration(resourceLoader);
29 |
30 | mainViewModel.CloseWindowCommand = CloseWindowCommand;
31 |
32 | MainViewModel = mainViewModel;
33 | }
34 | #endregion
35 |
36 | #region Commands
37 | ///
38 | /// Closes the current window.
39 | ///
40 | [RelayCommand]
41 | public void CloseWindow()
42 | {
43 | Close();
44 | }
45 | #endregion
46 |
47 | #region Static configuration methods
48 | ///
49 | /// Gets default configuration for the instance.
50 | ///
51 | ///
52 | /// An instance of type for loading resources, such as titles
53 | /// and icon paths.
54 | ///
55 | ///
56 | /// The configuration instance.
57 | ///
58 | public static AppWindowConfiguration GetDefaultAppWindowConfiguration(ResourceLoader resourceLoader)
59 | {
60 | return new()
61 | {
62 | IconPath = resourceLoader.GetString("AppIconPath/64x64"),
63 | Size = new SizeInt32((int)(1000 * 1.5), (int)(800 * 1.5)),
64 | };
65 | }
66 |
67 | ///
68 | /// Gets default configuration for the window.
69 | ///
70 | ///
71 | /// An instance of type for loading resources, such as titles
72 | /// and icon paths.
73 | ///
74 | ///
75 | /// The configuration instance.
76 | ///
77 | public static WindowConfiguration GetDefaultWindowConfiguration(ResourceLoader resourceLoader)
78 | {
79 | return new()
80 | {
81 | ExtendsContentIntoTitleBar = true,
82 | Title = resourceLoader.GetString("MainWindow/Title")
83 | };
84 | }
85 | #endregion
86 | }
--------------------------------------------------------------------------------
/Domain/ViewModels/Windows/PreferencesWindowViewModel.cs:
--------------------------------------------------------------------------------
1 | namespace BluDay.AwesomeMediaPlayer.Domain.ViewModels;
2 |
3 | ///
4 | /// Represents the view model for the preferences window.
5 | ///
6 | public sealed partial class PreferencesWindowViewModel : WindowViewModel
7 | {
8 | #region Properties
9 | ///
10 | /// Gets the current preferences view model instance.
11 | ///
12 | public PreferencesViewModel PreferencesViewModel { get; }
13 | #endregion
14 |
15 | #region Constructor
16 | ///
17 | /// Initializes a new instance of the class.
18 | ///
19 | ///
20 | /// The view model for the preferences view, as a transient.
21 | ///
22 | ///
23 | /// The application resource loader.
24 | ///
25 | public PreferencesWindowViewModel(
26 | PreferencesViewModel preferencesViewModel,
27 | ResourceLoader resourceLoader)
28 | {
29 | DefaultAppWindowConfiguration = GetDefaultAppWindowConfiguration(resourceLoader);
30 | DefaultWindowConfiguration = GetDefaultWindowConfiguration(resourceLoader);
31 |
32 | PreferencesViewModel = preferencesViewModel;
33 | }
34 | #endregion
35 |
36 | #region Static configuration methods
37 | ///
38 | /// Gets default configuration for the instance.
39 | ///
40 | ///
41 | /// An instance of type for loading resources, such as titles
42 | /// and icon paths.
43 | ///
44 | ///
45 | /// The configuration instance.
46 | ///
47 | public static AppWindowConfiguration GetDefaultAppWindowConfiguration(ResourceLoader resourceLoader)
48 | {
49 | return new()
50 | {
51 | IconPath = resourceLoader.GetString("AppIconPath/64x64"),
52 | Size = new SizeInt32((int)(800 * 1.5), (int)(700 * 1.5)),
53 | };
54 | }
55 |
56 | ///
57 | /// Gets default configuration for the window.
58 | ///
59 | ///
60 | /// An instance of type for loading resources, such as titles
61 | /// and icon paths.
62 | ///
63 | ///
64 | /// The configuration instance.
65 | ///
66 | public static WindowConfiguration GetDefaultWindowConfiguration(ResourceLoader resourceLoader)
67 | {
68 | return new()
69 | {
70 | ExtendsContentIntoTitleBar = true,
71 | Title = resourceLoader.GetString("PreferencesWindow/Title")
72 | };
73 | }
74 | #endregion
75 | }
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2024 BluDay
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/Lifecycle/Activation/AppActivationHandler.cs:
--------------------------------------------------------------------------------
1 | namespace BluDay.AwesomeMediaPlayer.Lifecycle.Activation;
2 |
3 | ///
4 | /// Handles the specific activation procedures for the application.
5 | ///
6 | public sealed class AppActivationHandler : IAppActivationHandler
7 | {
8 | private readonly ImplementationProvider _windowFactory;
9 |
10 | ///
11 | /// Initializes a new instance of the class.
12 | ///
13 | ///
14 | /// The window factory.
15 | ///
16 | public AppActivationHandler(ImplementationProvider windowFactory)
17 | {
18 | _windowFactory = windowFactory;
19 | }
20 |
21 | ///
22 | public Task ActivateAsync(object? args)
23 | {
24 | _windowFactory
25 | .GetInstance()
26 | .Activate();
27 |
28 | return Task.CompletedTask;
29 | }
30 | }
--------------------------------------------------------------------------------
/Lifecycle/Activation/AppDeactivationHandler.cs:
--------------------------------------------------------------------------------
1 | namespace BluDay.AwesomeMediaPlayer.Lifecycle.Activation;
2 |
3 | ///
4 | /// Handles the specific deactivation procedures for the application.
5 | ///
6 | public sealed class AppDeactivationHandler : IAppDeactivationHandler
7 | {
8 | private readonly IAppWindowService _windowService;
9 |
10 | ///
11 | /// Initializes a new instance of the class.
12 | ///
13 | ///
14 | /// The service used to create and manage windows within the running app.
15 | ///
16 | public AppDeactivationHandler(IAppWindowService windowService)
17 | {
18 | _windowService = windowService;
19 | }
20 |
21 | ///
22 | public Task DeactivateAsync()
23 | {
24 | // TODO: Deactivate the application.
25 |
26 | return Task.CompletedTask;
27 | }
28 | }
--------------------------------------------------------------------------------
/Package.appxmanifest:
--------------------------------------------------------------------------------
1 |
2 |
3 |
9 |
10 |
14 |
15 |
16 |
17 |
18 | BluDay.AwesomeMediaPlayer
19 | BluDay
20 | Assets\StoreLogo.png
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
36 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
--------------------------------------------------------------------------------
/Program.cs:
--------------------------------------------------------------------------------
1 | /**
2 | * Awesome Media Player
3 | *
4 | * https://github.com/bluday/awesome-media-player
5 | *
6 | * Copyright (c) 2025 BluDay
7 | */
8 |
9 | await new ServiceCollection()
10 | .Add(App.ConfigureServices)
11 | .BuildServiceProvider()
12 | .CreateWinui3AppAsync();
--------------------------------------------------------------------------------
/Properties/launchSettings.json:
--------------------------------------------------------------------------------
1 | {
2 | "profiles": {
3 | "BluDay.AwesomeMediaPlayer": {
4 | "commandName": "MsixPackage"
5 | }
6 | }
7 | }
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Awesome Media Player
2 |
3 | A clone of the [VLC](https://www.videolan.org/) desktop app for Windows, built using WinUI 3.
4 |
5 | **This app does not have any functionality at this time.**
6 |
7 | Screenshots (2025-04-10):
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/Resources/Strings/Resources.resw:
--------------------------------------------------------------------------------
1 |
2 |
3 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 | text/microsoft-resx
110 |
111 |
112 | 2.0
113 |
114 |
115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
116 |
117 |
118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
119 |
120 |
121 | ms-appx:///Assets/Icon-64.ico
122 |
123 |
--------------------------------------------------------------------------------
/Resources/Strings/en-US/Resources.resw:
--------------------------------------------------------------------------------
1 |
2 |
3 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 | text/microsoft-resx
110 |
111 |
112 | 2.0
113 |
114 |
115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
116 |
117 |
118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
119 |
120 |
121 | Awesome Media Player
122 |
123 |
124 | Current Media Information
125 |
126 |
127 | My Music
128 |
129 |
130 | My Pictures
131 |
132 |
133 | Playlist [00:00]
134 |
135 |
136 | My Computer
137 |
138 |
139 | My Videos
140 |
141 |
142 | Awesome Media Player
143 |
144 |
145 | Media Library
146 |
147 |
148 | Devices
149 |
150 |
151 | Discs
152 |
153 |
154 | Local Network
155 |
156 |
157 | Internet
158 |
159 |
160 | Search
161 |
162 |
163 | Media
164 |
165 |
166 | Open File...
167 |
168 |
169 | Open Multiple Files...
170 |
171 |
172 | Open Folder...
173 |
174 |
175 | Open Disc...
176 |
177 |
178 | Open Network Stream...
179 |
180 |
181 | Open Capture Device...
182 |
183 |
184 | Open Location from clipboard
185 |
186 |
187 | Open Recent Media
188 |
189 |
190 | file_0.mp3
191 |
192 |
193 | Save Playlist to File...
194 |
195 |
196 | Convert / Save...
197 |
198 |
199 | Stream...
200 |
201 |
202 | Quit at the end of playlist
203 |
204 |
205 | Quit
206 |
207 |
208 | Playback
209 |
210 |
211 | Title
212 |
213 |
214 | Content
215 |
216 |
217 | Chapter
218 |
219 |
220 | Content
221 |
222 |
223 | Program
224 |
225 |
226 | Content
227 |
228 |
229 | Custom Bookmarks
230 |
231 |
232 | Manage
233 |
234 |
235 | Renderer
236 |
237 |
238 | Scanning...
239 |
240 |
241 | Speed
242 |
243 |
244 | Faster
245 |
246 |
247 | Faster (fine)
248 |
249 |
250 | Normal Speed
251 |
252 |
253 | Slower (fine)
254 |
255 |
256 | Slower
257 |
258 |
259 | Jump Forward
260 |
261 |
262 | Jump Backward
263 |
264 |
265 | Jump to Specific Time
266 |
267 |
268 | Play
269 |
270 |
271 | Stop
272 |
273 |
274 | Previous
275 |
276 |
277 | Next
278 |
279 |
280 | Record
281 |
282 |
283 | Audio
284 |
285 |
286 | Audio Track
287 |
288 |
289 | Content
290 |
291 |
292 | Audio Device
293 |
294 |
295 | Content
296 |
297 |
298 | Stereo Mode
299 |
300 |
301 | Content
302 |
303 |
304 | Visualizations
305 |
306 |
307 | Content
308 |
309 |
310 | Increase Volume
311 |
312 |
313 | Decrease Volume
314 |
315 |
316 | Mute
317 |
318 |
319 | Video
320 |
321 |
322 | Video Track
323 |
324 |
325 | Content
326 |
327 |
328 | Fullscreen
329 |
330 |
331 | Always Fit Window
332 |
333 |
334 | Set as Wallpaper
335 |
336 |
337 | Zoom
338 |
339 |
340 | Content
341 |
342 |
343 | Aspect Ratio
344 |
345 |
346 | Content
347 |
348 |
349 | Crop
350 |
351 |
352 | Content
353 |
354 |
355 | Deinterlace
356 |
357 |
358 | Content
359 |
360 |
361 | Deinterlace mode
362 |
363 |
364 | Content
365 |
366 |
367 | Take Snapshot
368 |
369 |
370 | Subtitle
371 |
372 |
373 | Add Subtitle File...
374 |
375 |
376 | Sub Track
377 |
378 |
379 | Content
380 |
381 |
382 | Tools
383 |
384 |
385 | Effects and Filters
386 |
387 |
388 | Track Synchronization
389 |
390 |
391 | Media Information
392 |
393 |
394 | Codec Information
395 |
396 |
397 | VLM Configuration
398 |
399 |
400 | Program Guide
401 |
402 |
403 | Messages
404 |
405 |
406 | Plugins and Extensions
407 |
408 |
409 | Customize Interface...
410 |
411 |
412 | Preferences
413 |
414 |
415 | View
416 |
417 |
418 | Playlist
419 |
420 |
421 | Docked Playlist
422 |
423 |
424 | Playlist View Mode
425 |
426 |
427 | Content
428 |
429 |
430 | Always on top
431 |
432 |
433 | Minimal Interface
434 |
435 |
436 | Fullscreen Interface
437 |
438 |
439 | Advanced Controls
440 |
441 |
442 | Status Bar
443 |
444 |
445 | Add Interface
446 |
447 |
448 | Content
449 |
450 |
451 | VLsub
452 |
453 |
454 | Help
455 |
456 |
457 | Help
458 |
459 |
460 | Check for Updates...
461 |
462 |
463 | About
464 |
465 |
466 | Authors
467 |
468 |
469 | License
470 |
471 |
472 | Credits
473 |
474 |
475 | Help
476 |
477 |
478 | About
479 |
480 |
481 | Preferences
482 |
483 |
--------------------------------------------------------------------------------
/Usings.cs:
--------------------------------------------------------------------------------
1 | global using CommunityToolkit.Mvvm.ComponentModel;
2 | global using CommunityToolkit.Mvvm.Input;
3 | global using CommunityToolkit.Mvvm.Messaging;
4 | global using CommunityToolkit.WinUI.UI.Controls;
5 |
6 | global using BluDay.AwesomeMediaPlayer;
7 | global using BluDay.AwesomeMediaPlayer.Controls.Windows;
8 | global using BluDay.AwesomeMediaPlayer.Domain.ViewModels;
9 |
10 | global using BluDay.Net.Abstractions.Handlers;
11 | global using BluDay.Net.Abstractions.Services;
12 | global using BluDay.Net.Common.Extensions;
13 | global using BluDay.Net.Services;
14 | global using BluDay.Net.DependencyInjection;
15 | global using BluDay.Net.WinUI3.Abstractions.ViewModels;
16 | global using BluDay.Net.WinUI3.Common.Extensions;
17 | global using BluDay.Net.WinUI3.ComponentModel;
18 |
19 | global using Microsoft.Extensions.DependencyInjection;
20 | global using Microsoft.Extensions.DependencyInjection.Extensions;
21 | global using Microsoft.Extensions.Logging;
22 | global using Microsoft.UI.Windowing;
23 | global using Microsoft.UI.Xaml;
24 | global using Microsoft.UI.Xaml.Controls;
25 | global using Microsoft.UI.Xaml.Media;
26 | global using Microsoft.Windows.ApplicationModel.Resources;
27 |
28 | global using Muxc = Microsoft.UI.Xaml;
29 |
30 | global using System;
31 | global using System.Diagnostics;
32 | global using System.Drawing;
33 | global using System.Threading.Tasks;
34 | global using System.Windows.Input;
35 |
36 | global using Windows.Graphics;
37 | global using Windows.System;
--------------------------------------------------------------------------------
/app.manifest:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
10 |
11 |
12 |
13 |
14 |
15 |
16 | PerMonitorV2
17 |
18 |
19 |
--------------------------------------------------------------------------------