static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); CredentialsD model = new CredentialsD("Alice", "Wonderland"); ControllerD controller = new ControllerD(model); Form1 view = new Form1(controller.handleEvents); controller.registerObs(view.DisplayState); Application.Run(); }
static void Main() { Application.SetHighDpiMode(HighDpiMode.SystemAware); Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); CredentialsD model = new CredentialsD("Alice", "Wonderland"); ControllerD controller = new ControllerD(model); LoginD view = new LoginD(controller.handleEvents); controller.registerObs(view.DisplayState); Application.Run(view); }
//in class public ControllerD(CredentialsD m) { this.model = m; }
/// <summary> /// /// </summary> /// <param name="m"></param> /// <param name="v"></param> public ControllerD(CredentialsD m, LoginD v) { model = m; view = v; }