mvc framework for winforms .net [closed] - winforms

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
Please suggest a good MVC framework for Winforms.

http://www.codeplex.com/CompositeWPF (MVC application block for WPF/Silverlight)
http://blogs.msdn.com/priozersk/archive/2008/11/04/mobile-mvc-framework-part-4-passing-data-between-controllers.aspx (MVC framework for .NET Compact Framework)
Regards,
tamberg

http://www.mvcsharp.org/
Welcome to the MVC# home page
MVC# - is a Model-View-Presenter framework for .NET platform. It allows taking advantage of the MVP pattern with minimal effort required. As a result applications gain 3-tier structure, become better structured and easier to maintain.
MVC# Overview - an introduction to MVC# Framework.
10-Minute Example - a simple example of using MVC# Framework.
For more information examine the Documentation section of the website.
If you're feeling yourself ready, just proceed to the Download page.

CAB isn't too bad

Smart Client Software Factory:
http://www.codeplex.com/smartclient

Related

Best framework for create responsive website? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
I need much time for create a responsive website. Need to create normal website after it costumize the css using media query. I think I can safe my time. Sometime I browsing and find a framework : amazium. My question,
Is the best framework or any another method for easily and fastly to create any responsive website? I need any suggestion for safe my time. Thank you.
You could use a framework like Zurb Foundation 4 it's a responsive front-end framework highly recommended. It has fluid layouts, responsive design and a grid system.
Getting started docs: http://foundation.zurb.com/docs/
Marakana TechTv video: http://www.youtube.com/watch?v=1HvE1h9gN8M
It depends on your needs, but you should check out Bootstrap.
Bootstrap would be my first choice.
responsive website is not about the framework. Most of time is about how you organize your web page and how you use the framework.

Can a project adopt AngularJS as its template engine while being a non-MVC project? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
I use Pure as the template engine for my current project. It is, however, rather minimal in terms of what it offers. I am in need for a template engine that allows "conditional statements". AngularJS is a candidate that I am interested in. I have been reading a lot about the MVC framework lately and it seems quite interesting. If I have the resources to spare later on, I would definitely want to try to apply AngularJS on my project. For now, I just want to use AngularJS's template engine without converting my project to MVC. Is this viable? If so, please suggest any good resources for me to learn its template language. Thanks.
You can choose to only use the template bit in angular, yes. Check the angular website for tutorials. It's quite straight forward.

Can we create WPF application using MVC or MVP? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
In a interview,i had been asked to a question that,
Can we create WPF application using MVC or MVP design pattern or practice. I said MVC or MVP is a design pattern to develop loosely coupled application. we'll use MVC,MVP or MVVM based on given scenario,context,technology and platform of application.
If We can Create WPF application using MVC or MVP,if you have any good example in form of code or PoC, then please share or explain.
MVC, MVP and MVVM all are UI design pattern. There is no restriction on using these pattern with WPF. But if we are using MVVM pattern we can take advantage of WPF feature like data binding etc..
Reference: - MVVM vs MVP vs MVC

Which MVVM frameworks help develop an application easier and faster? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
I know there are some MVVM frameworks, such as MVVM Toolkit, MVVM Light, and Prism.
I was wondering with which one of those MVVM frameworks is it easier and faster to develop an application?
It depends, but i prefer the mvvm-light. Its very lightweight and easy to use.
You should watch the creator's two videos from mix: video1 video2.
I suggest you WAF it is an opensource framework for generating MVVM.
It is really easy to use
Easier and faster is relative. From my experience though you can't go wrong with Caliburn Micro or Mvvm Light. Caliburn Micro's screens and conductors, among others, are a very nice feature.

MVC frameworks for .NET desktop applications [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I've been playing a lot with MVC lately in the forms of ASP.NET MVC and Django (MTV actually) and I must say that I love it.
Are there any similar frameworks for creating desktop WinForm apps?
Not that I know of.
Most of my Winforms apps use the MVC or MVP pattern though. I've noticed that when creating Winforms apps you don't really need much of a framework. There is no routing infrastructure and no view-rendering. I find that I don't have to do much plumbing to use these patterns.
That might explain why there are no high profile frameworks in that space.
A winforms app blends the view and controller into pretty much one thing, the form. In other words, you are working with a model view/controller pattern. Much of the work for the view and controller is already done.

Resources