mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-22 20:54:59 +00:00
refactor<*>: rewrite all with AvaloniaUI
This commit is contained in:
parent
0136904612
commit
2a62596999
521 changed files with 19780 additions and 23244 deletions
19
src/Views/FileHistories.axaml.cs
Normal file
19
src/Views/FileHistories.axaml.cs
Normal file
|
@ -0,0 +1,19 @@
|
|||
using Avalonia.Controls;
|
||||
using Avalonia.Input;
|
||||
|
||||
namespace SourceGit.Views {
|
||||
public partial class FileHistories : Window {
|
||||
public FileHistories() {
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void OnPressedSHA(object sender, PointerPressedEventArgs e) {
|
||||
if (sender is TextBlock block) {
|
||||
var histories = DataContext as ViewModels.FileHistories;
|
||||
histories.NavigateToCommit(block.Text);
|
||||
}
|
||||
|
||||
e.Handled = true;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue