mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2025-01-13 00:07:20 -08:00
e3c0f7d496
* use system chrome instead of custom caption button on macOS * move `BeginMoveWindow` and `MaximizeOrRestoreWindow` to `ChromelessWindow` * better supports for fullscreen mode on macOS * redesign the layout of title bar for all windows Signed-off-by: leo <longshuang@msn.cn>
54 lines
1.5 KiB
C#
54 lines
1.5 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 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 OnVisitLiveCharts2(object _, PointerPressedEventArgs e)
|
|
{
|
|
Native.OS.OpenBrowser("https://livecharts.dev/");
|
|
e.Handled = true;
|
|
}
|
|
|
|
private void OnVisitSourceCode(object _, PointerPressedEventArgs e)
|
|
{
|
|
Native.OS.OpenBrowser("https://github.com/sourcegit-scm/sourcegit");
|
|
e.Handled = true;
|
|
}
|
|
}
|
|
}
|