Tag: Development

Community

Managing Models in ASP.NET MVC

(Peter Vogel) One of the key design criteria for a controller is that it have no business logic and no display logic. The controller has two (and only two) responsibilities: Pick the View and gather the data from the model and pass it to the View. The View’s responsibility is to display the data to

Community

TrackBar in C#

(Mahesh Chand) In this article, I will discuss how to create and use a TrackBar control in a Windows Forms application using Visual Studio 2010. After that, I will discuss various properties and methods available for the TrackBar control.