diff --git a/DwmLutGUI/DwmLutGUI/AboutWindow.xaml b/DwmLutGUI/DwmLutGUI/AboutWindow.xaml new file mode 100644 index 0000000..9719a30 --- /dev/null +++ b/DwmLutGUI/DwmLutGUI/AboutWindow.xaml @@ -0,0 +1,22 @@ + + + + dwm_lut v3.6 by ledoge + + + Licensed under GPLv3 + Source code and releases hosted at + https://github.com/ledoge/dwm_lut + + + \ No newline at end of file diff --git a/DwmLutGUI/DwmLutGUI/AboutWindow.xaml.cs b/DwmLutGUI/DwmLutGUI/AboutWindow.xaml.cs new file mode 100644 index 0000000..f4fa7fa --- /dev/null +++ b/DwmLutGUI/DwmLutGUI/AboutWindow.xaml.cs @@ -0,0 +1,22 @@ +using System.Windows; +using System.Windows.Navigation; + +namespace DwmLutGUI +{ + public partial class AboutWindow : Window + { + public AboutWindow() + { + InitializeComponent(); + } + + private void OnRequestNavigate(object sender, RequestNavigateEventArgs e) + { + var processStartInfo = new System.Diagnostics.ProcessStartInfo(e.Uri.AbsoluteUri) + { + UseShellExecute = true, + }; + System.Diagnostics.Process.Start(processStartInfo); + } + } +} \ No newline at end of file diff --git a/DwmLutGUI/DwmLutGUI/DwmLutGUI.csproj b/DwmLutGUI/DwmLutGUI/DwmLutGUI.csproj index de1a218..9cd5636 100644 --- a/DwmLutGUI/DwmLutGUI/DwmLutGUI.csproj +++ b/DwmLutGUI/DwmLutGUI/DwmLutGUI.csproj @@ -80,10 +80,14 @@ MSBuild:Compile Designer + MSBuild:Compile Designer + + AboutWindow.xaml + App.xaml Code diff --git a/DwmLutGUI/DwmLutGUI/MainWindow.xaml b/DwmLutGUI/DwmLutGUI/MainWindow.xaml index 56345f2..4a2e095 100644 --- a/DwmLutGUI/DwmLutGUI/MainWindow.xaml +++ b/DwmLutGUI/DwmLutGUI/MainWindow.xaml @@ -47,13 +47,14 @@ Width="75" Click="HdrLutClear_Click" /> -