-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
61 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<Window x:Class="DwmLutGUI.AboutWindow" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | ||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | ||
mc:Ignorable="d" | ||
Title="About" | ||
SizeToContent="WidthAndHeight" | ||
ResizeMode="NoResize" | ||
WindowStartupLocation="CenterOwner" | ||
SnapsToDevicePixels="True"> | ||
<StackPanel Margin="6"> | ||
<TextBlock FontSize="15" HorizontalAlignment="Center" TextAlignment="Center"> | ||
dwm_lut v3.6 by ledoge | ||
</TextBlock> | ||
<TextBlock HorizontalAlignment="Center" TextAlignment="Center"> | ||
Licensed under GPLv3 <LineBreak /> <LineBreak /> | ||
Source code and releases hosted at <LineBreak /> | ||
<Hyperlink RequestNavigate="OnRequestNavigate" NavigateUri="https://github.com/ledoge/dwm_lut">https://github.com/ledoge/dwm_lut</Hyperlink> | ||
</TextBlock> | ||
</StackPanel> | ||
</Window> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters