mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-30 17:57:57 +01:00
* 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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user