Fixes #2486 - Removes old Border and fixes a litany of related things (#2525)

* Added View.BorderStyle and renamed BorderStyle enum to LineStyle

* Fixed a lot of things and broke everything else

* Fixed things

* Updated DialogTests

* Updates including Rect unit tests

* Fixed Dialog & MessagBox tests

* Fixed AllviewsTester bug

* Fixed AllviewsTester bug

* Removed Border class

* Renamed View privates with _

* Removed comments in MessageBox.cs
This commit is contained in:
Tig
2023-04-10 17:34:52 -06:00
committed by GitHub
parent 98aab602eb
commit a637f8a29c
78 changed files with 5222 additions and 4081 deletions

View File

@@ -9,10 +9,10 @@ namespace ReactiveExample {
public class LoginView : Window, IViewFor<LoginViewModel> {
readonly CompositeDisposable _disposable = new CompositeDisposable();
public LoginView (LoginViewModel viewModel) : base("Reactive Extensions Example") {
public LoginView (LoginViewModel viewModel) : base() {
Title = "Reactive Extensions Example";
ViewModel = viewModel;
var title = TitleLabel ();
var usernameLengthLabel = UsernameLengthLabel (title);
var usernameLengthLabel = UsernameLengthLabel (TitleLabel ());
var usernameInput = UsernameInput (usernameLengthLabel);
var passwordLengthLabel = PasswordLengthLabel (usernameInput);
var passwordInput = PasswordInput (passwordLengthLabel);