commit e8c0721c3919300f8ddde9855a8c8543d4a7efc4 Author: Ray Berezowski <6616212+rberezowski@users.noreply.github.com> Date: Tue Jun 2 17:28:25 2026 -0400 Initial TaskbarLauncher release baseline diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f91cad3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,16 @@ +bin/ +obj/ +*.user +*.suo +*.pdb + +# Portable runtime data +config.json +backups/ + +# Local/editor noise +.vs/ +.vscode/ + +# Generated release output kept outside the repo when possible +*.zip diff --git a/App.xaml b/App.xaml new file mode 100644 index 0000000..fef3362 --- /dev/null +++ b/App.xaml @@ -0,0 +1,182 @@ + + + + + + + + + + + + + diff --git a/App.xaml.cs b/App.xaml.cs new file mode 100644 index 0000000..a926271 --- /dev/null +++ b/App.xaml.cs @@ -0,0 +1,23 @@ +using TaskbarLauncher.Services; + +namespace TaskbarLauncher; + +public partial class App : System.Windows.Application +{ + private LauncherController? controller; + + protected override void OnStartup(System.Windows.StartupEventArgs e) + { + base.OnStartup(e); + + ThemeService.Apply(); + controller = new LauncherController(); + controller.Start(); + } + + protected override void OnExit(System.Windows.ExitEventArgs e) + { + controller?.Dispose(); + base.OnExit(e); + } +} diff --git a/AssemblyInfo.cs b/AssemblyInfo.cs new file mode 100644 index 0000000..cc29e7f --- /dev/null +++ b/AssemblyInfo.cs @@ -0,0 +1,10 @@ +using System.Windows; + +[assembly:ThemeInfo( + ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located + //(used if a resource is not found in the page, + // or application resource dictionaries) + ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located + //(used if a resource is not found in the page, + // app, or any theme specific resource dictionaries) +)] diff --git a/MainWindow.xaml b/MainWindow.xaml new file mode 100644 index 0000000..7f07c34 --- /dev/null +++ b/MainWindow.xaml @@ -0,0 +1,166 @@ + + + + + + + + + + +