fix: 修复windows上部分输入框样式不正确

This commit is contained in:
姚彪
2024-01-14 01:01:20 +08:00
parent 4bc340cead
commit 442dadc1b4
9 changed files with 10 additions and 35 deletions

View File

@@ -45,7 +45,7 @@ public class MainWindowViewModel : BindableBase
set => SetProperty(ref _message, value);
}
private DelegateCommand? LoadedCommand { get; }
public DelegateCommand? LoadedCommand { get; }
public DelegateCommand<PointerPressedEventArgs> DragMoveCommand { get; private set; }
private DelegateCommand? _closingCommand;
@@ -144,9 +144,6 @@ public class MainWindowViewModel : BindableBase
// ignored
}
});
Dispatcher.UIThread.InvokeAsync(() => { LoadedCommand.Execute(); });
}
#region