mirror of
https://fastgit.cc/github.com/sourcegit-scm/sourcegit
synced 2026-04-24 19:02:39 +08:00
21 lines
488 B
C#
21 lines
488 B
C#
using System;
|
|
|
|
using Avalonia;
|
|
using Avalonia.Controls;
|
|
|
|
namespace SourceGit.Views
|
|
{
|
|
public class EnhancedSelectableTextBlock : SelectableTextBlock
|
|
{
|
|
protected override Type StyleKeyOverride => typeof(SelectableTextBlock);
|
|
|
|
protected override void OnPropertyChanged(AvaloniaPropertyChangedEventArgs change)
|
|
{
|
|
base.OnPropertyChanged(change);
|
|
|
|
if (change.Property == TextProperty)
|
|
UpdateLayout();
|
|
}
|
|
}
|
|
}
|