feat: try to fix trimming issue.

This commit is contained in:
rabbitism
2024-07-22 15:32:05 +08:00
parent 96ec5b65de
commit 34ca98eede
19 changed files with 51 additions and 28 deletions

View File

@@ -12,7 +12,7 @@ public abstract class NumberDisplayerBase : TemplatedControl
nameof(InternalText), o => o.InternalText, (o, v) => o.InternalText = v);
private string _internalText;
internal string InternalText
public string InternalText
{
get => _internalText;
set => SetAndRaise(InternalTextProperty, ref _internalText, value);