mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-26 21:17:20 -08:00
e19d025572
* move resources and styles for macOS caption button to `CaptionButtonsMacOS` because it is never used by others and should not been changed * add `IsCloseButtonOnly` property to `CaptionButtons` and `CaptionButtonsMacOS` and replace the controls in windows
53 lines
1.4 KiB
C#
53 lines
1.4 KiB
C#
using System.Reflection;
|
|
using Avalonia.Input;
|
|
|
|
namespace SourceGit.Views
|
|
{
|
|
public partial class About : ChromelessWindow
|
|
{
|
|
public string Version
|
|
{
|
|
get;
|
|
private set;
|
|
}
|
|
|
|
public About()
|
|
{
|
|
var ver = Assembly.GetExecutingAssembly().GetName().Version;
|
|
if (ver != null)
|
|
Version = $"{ver.Major}.{ver.Minor}";
|
|
|
|
DataContext = this;
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void BeginMoveWindow(object _, PointerPressedEventArgs e)
|
|
{
|
|
BeginMoveDrag(e);
|
|
}
|
|
|
|
private void OnVisitAvaloniaUI(object _, PointerPressedEventArgs e)
|
|
{
|
|
Native.OS.OpenBrowser("https://www.avaloniaui.net/");
|
|
e.Handled = true;
|
|
}
|
|
|
|
private void OnVisitAvaloniaEdit(object _, PointerPressedEventArgs e)
|
|
{
|
|
Native.OS.OpenBrowser("https://github.com/AvaloniaUI/AvaloniaEdit");
|
|
e.Handled = true;
|
|
}
|
|
|
|
private void OnVisitJetBrainsMonoFont(object _, PointerPressedEventArgs e)
|
|
{
|
|
Native.OS.OpenBrowser("https://www.jetbrains.com/lp/mono/");
|
|
e.Handled = true;
|
|
}
|
|
|
|
private void OnVisitSourceCode(object _, PointerPressedEventArgs e)
|
|
{
|
|
Native.OS.OpenBrowser("https://github.com/sourcegit-scm/sourcegit");
|
|
e.Handled = true;
|
|
}
|
|
}
|
|
}
|