Click here to Skip to main content
15,741,688 members
Articles / Programming Languages / C#
Article
Posted 28 May 2002

Stats

491.9K views
148 bookmarked

Model View Controller (MVC) Using C#, Delegates and Events in .NET

Rate me:
Please Sign up or sign in to vote.
3.06/5 (70 votes)
28 May 20025 min read
Model View Controller written in C# using the .NET Framework

Introduction

During my third year at the Fontys University in Holland I bumped into a concept called Model-View-Controller. We created a small test project containing the MVC pattern and incorporated different data structures to get experienced with different programming techniques. I embraced the power of patterns and filled my days and nights reading material produced by the Gang of Four. While I was fooling around with .NET during my traineeship at KSE group BV in Holland I decided to experiment with different patterns like MVC, Singleton, Factory etc. This article explains the MVC pattern's basics and clears the big implementation question up with a decent practical example written in my favorite programming language, C#.

Model View Controller

The actual pattern employed in this example, is Model View Controller (MVC). The Windows Forms component will act as the View. There's a book class which represents the Model. The actual Controller logic isn't separated from the View/Model because of my primary design goals. I will publish an extensive MVC-system in the near future which will be reusable for all kind of .NET applications.

Delegates

A delegate is a type-safe method reference. With usage of delegates, programs can dynamically call methods at runtime. In contrast to our MVC pattern delegates provide a solid infrastructure to implant the publish-subscribe notification pattern. For those who have experience with Java, I'm referring to the Observer/Observable registration functionality witch the JDK 1.3 provides for exploiting the MVC pattern in the Java environment.

Events

An event is common in modern programming languages. The basic usage of events is indicating certain user-defined occurrences inside your program. Events are used to notify certain listeners during the program lifetime. A very good example is button clicks or other dynamic actions in your programs. Events are again powered by the publish/subscriber pattern.

The model

While coding this basic example in order to explore MVC pattern I thought of books obviously. Below displayed is a basic book class implementation. This Book class contains a private member called bookPrice. The basic functionality I want to provide for all object who wish to instantiate my book class is an actual book price, in the case that the price changes, my views will update their views in order to display the actual book price. The idea is simple so lets move on… see the comments in the code.

C#
using System;
namespace MVC
{
    public class Book
    {
        // declare a delegate for the bookpricechanged event
        public delegate void BookPriceChangedHandler(objectsender,
        BookPriceChangedEventArgs e);
        
        // declare the bookpricechanged event using the bookpricechangeddelegate
        public event BookPriceChangedHandlerBookPriceChanged;
        
        // instance variable for book price
        object _bookPrice;
        
        // property for book price
        public object BookPrice
        {
            set
            {
                // set the instance variable
                _bookPrice=value;
                
                // the price changed so fire the event!
                OnBookPriceChanged();
            }
        }
        
        // method to fire price canged event delegate with proper name
        // this is the method our observers should be implenting!
        protected void OnBookPriceChanged()
        {
            BookPriceChanged(this, new BookPriceChangedEventArgs(_bookPrice));
        }
    }
}

So what happened here; we'd structured the basic layout for the book class. Notice the declared delegate and event BookPriceChangedHandler and BookPriceChanged. The delegate encapsulates the BookPriceChanged method. Later we'll see why, but for know its enough to know that the BookPriceChanged method will be implemented in the object that wishes to observe this book class. As you can see, the method gets called with the BookPriceChangedEventArgs. This argument object contains the public properties the book object encapsulates. This is just the standard way for transporting multiple parameters towards methods. Kind of basic programming, so this should be self explanatory. Lets take a brief look at the BookPriceChangedEventArgs class.

C#
namespace MVC
{
    // specialized event class for the bookpricechanged event
    public class BookPriceChangedEventArgs : EventArgs
    {
        // instance variable to store the book price
        private object _bookPrice;

        // constructor that sets book price
        public BookPriceChangedEventArgs(objectbookPrice)
        {
            _bookPrice=bookPrice;
        }

        // public property for the book price
        public object BookPrice
        {
            get
            {
                return _bookPrice;
            }
        }
    }
}

Maybe you noticed that I used the object (like in Java the "any") instead of string declaration for my price value. The main reason for this is that while creating this model I didn't know what kind of GUI representation I wished to use to show my book price value. In case you wish to add more members to the Book class, for instance a name, author, you should extend this EventArgs class. I would consider giving the class a more abstract name like BookChanged.

The view

Now our model is functional so let's move on to the View. Below is a listing of the view object BookView which subscribes to the book model using a delegate. This way the observer gets notified when the price change events is thrown in the model (the observable). You could pass the private book object through reference to multiple views (think of those smart Adobe Photoshop panels, which are views on the underlying model). In this demo I created a simple two-view system making use of a textbox and a basic label to visualize the book model.

C#
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
 
namespace MVC
{
    public class BookView : System.Windows.Forms.Form
    {
        private System.ComponentModel.Container components = null;
 
        // Declare our delagate and book object
        private Book.BookPriceChangedHandler bookDelegate;
        private Book book;
 
        private System.Windows.Forms.Button button1;
        private System.Windows.Forms.TextBox textBox1;
        private System.Windows.Forms.GroupBox groupBox1;
        private System.Windows.Forms.TextBox textBox2;
        private System.Windows.Forms.GroupBox groupBox2;
        private System.Windows.Forms.Label label1;
 
        public BookView()
        {
            InitializeComponent();
 
            //create new book instance
            book=new Book();
   
            // create a new delegate, instance and bind it
            // to the observer's bookpricechanged method
            bookDelegate = new Book.BookPriceChangedHandler(this.BookPriceChanged);    
            //add the delegate to the event
            book.BookPriceChanged += bookDelegate;
        }
 
        protected override void Dispose( bool disposing )
        {
            if( disposing )
            {
                if(components != null)
                {
                     components.Dispose();
                }
            }
            base.Dispose( disposing );
        }
 
        #region Windows Form Designer generated code
        private void InitializeComponent()
        {
            this.button1 = new System.Windows.Forms.Button();
            this.textBox1 = new System.Windows.Forms.TextBox();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.textBox2 = new System.Windows.Forms.TextBox();
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.label1 = new System.Windows.Forms.Label();
            this.groupBox1.SuspendLayout();
            this.groupBox2.SuspendLayout();
            this.SuspendLayout();
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(120, 16);
            this.button1.Name = "button1";
            this.button1.TabIndex = 0;
            this.button1.Text = "button1";
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // textBox1
            // 
            this.textBox1.Location = new System.Drawing.Point(8, 16);
            this.textBox1.Name = "textBox1";
            this.textBox1.TabIndex = 1;
            this.textBox1.Text = "";
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.AddRange(new System.Windows.Forms.Control[] {
            this.textBox2});
            this.groupBox1.Location = new System.Drawing.Point(8, 104);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(120, 64);
            this.groupBox1.TabIndex = 2;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "View 1";
            // 
            // textBox2
            // 
            this.textBox2.Location = new System.Drawing.Point(8, 32);
            this.textBox2.Name = "textBox2";
            this.textBox2.TabIndex = 0;
            this.textBox2.Text = "";
            // 
            // groupBox2
            // 
            this.groupBox2.Controls.AddRange(new System.Windows.Forms.Control[] {
            this.label1});
            this.groupBox2.Location = new System.Drawing.Point(8, 176);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Size = new System.Drawing.Size(120, 64);
            this.groupBox2.TabIndex = 3;
            this.groupBox2.TabStop = false;
            this.groupBox2.Text = "View 2";
            // 
            // label1
            // 
            this.label1.Location = new System.Drawing.Point(8, 32);
            this.label1.Name = "label1";
            this.label1.TabIndex = 0;
            // 
            // BookView
            // 
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize = new System.Drawing.Size(292, 266);
            this.Controls.AddRange(new System.Windows.Forms.Control[] {
            this.groupBox2,
            this.groupBox1,
            this.textBox1,
            this.button1});
            this.Name = "BookView";
            this.Text = "BookView";
            this.groupBox1.ResumeLayout(false);
            this.groupBox2.ResumeLayout(false);
            this.ResumeLayout(false);
 
        }
        #endregion
 
        [STAThread]
        static void Main() 
        {
            Application.Run(new BookView());
        }
 
        public void BookPriceChanged(object sender, MVC.BookPriceChangedEventArgs e) 
        {
            // update bookprice views
            object bookPrice;
            bookPrice = e.BookPrice;         
            this.textBox2.Text = bookPrice.ToString();
            this.label1.Text = bookPrice.ToString();
        }
 
        private void button1_Click(object sender, System.EventArgs e)
        {
            // change book price
            book.BookPrice = this.textBox1.Text;
        }
    }
}

As soon you make changes to the book price, the BookPriceChanged will be triggered in the model. Because the view is registered to the OnBookPriceChanged method, the BookPricechanged will be invoked from the model. The View (observer) implements the BookPriceChanged method so the views get updated according to the rules as specified in the view upon the book model. Confused? Then start toying with this code because you now know the basics concerning a simple MVC! The book class code is reusable for whatever functionality you wish to provide to the outside world from out your model. Have fun!

Conclusion

I'm sure I've explained the MVC mechanism in the .NET world using C# extensively. In my opinion .NET is a fantastic environment for both starting coders and more experienced coders. You'll need some basic knowledge concerning object oriented programming to make a jump start into the .NET Framework. I enjoyed writing this article and hope it was a useful addition for those who read it.

Who am I?

I am a dedicated programmer combining software technology with web technology. I'm currently working part-time as a software engineer at Connexx Communications and studying Information Technology at the Fontys University in Holland. In my spare time I enjoy fooling around with new technology like .NET and coding for a Half Life mod named Hostile Intent.

You have a royalty-free right to use, modify, reproduce and distribute the Sample Application Files (and/or any modified version) in any way you find useful, provided that you agree that P.Gielens has no warranty, obligations or liability for any Sample Application Files.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Netherlands Netherlands
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionJust complicating what should be very simple. Pin
cac_3-Nov-14 0:59
cac_3-Nov-14 0:59 
GeneralMy vote of 1 Pin
Brian C Hart16-Apr-12 11:38
professionalBrian C Hart16-Apr-12 11:38 
Buga few 'typo' errors ? Pin
mwolmstr13-Jan-12 4:15
mwolmstr13-Jan-12 4:15 
GeneralMy vote of 1 Pin
zenwalker198517-Oct-11 20:33
zenwalker198517-Oct-11 20:33 
GeneralMy vote of 1 Pin
Boutemine Oualid13-Mar-10 5:16
Boutemine Oualid13-Mar-10 5:16 
GeneralMVC architecture in .net Windows form Pin
Dilip Jaju (DJ)18-Nov-09 19:52
Dilip Jaju (DJ)18-Nov-09 19:52 
GeneralMy vote of 1 Pin
andruski_uk7-Jul-09 4:34
andruski_uk7-Jul-09 4:34 
GeneralMy vote of 1 Pin
Member 31229134-Jul-09 8:32
Member 31229134-Jul-09 8:32 
GeneralMy vote of 1 Pin
BlueNexus1-Jul-09 10:52
BlueNexus1-Jul-09 10:52 
GeneralMy vote of 1 Pin
Member 92033321-Jun-09 20:20
Member 92033321-Jun-09 20:20 
QuestionNot MVC Pin
Member 92033321-Jun-09 20:20
Member 92033321-Jun-09 20:20 
AnswerRe: Not MVC Pin
Jason Jakob9-Nov-09 8:59
Jason Jakob9-Nov-09 8:59 
GeneralMy vote of 1 Pin
itzasifmd17-Jun-09 20:02
itzasifmd17-Jun-09 20:02 
GeneralMy vote of 1 Pin
sdiemer7-May-09 16:37
sdiemer7-May-09 16:37 
GeneralMy vote of 1 Pin
sadekdm4-Feb-09 8:27
sadekdm4-Feb-09 8:27 
GeneralMy vote of 1 Pin
Joey Chömpff26-Jan-09 7:57
Joey Chömpff26-Jan-09 7:57 
GeneralNot MVC - No Controller (again) PinPopular
Felipe R. Machado8-Mar-08 22:04
professionalFelipe R. Machado8-Mar-08 22:04 
QuestionWhere to instantiate the model? Pin
Bartosz Bien18-Oct-06 4:05
Bartosz Bien18-Oct-06 4:05 
GeneralGood Pin
Ahmed Erarslan22-Nov-05 0:21
Ahmed Erarslan22-Nov-05 0:21 
GeneralRe: Good Pin
itzasifmd17-Jun-09 20:07
itzasifmd17-Jun-09 20:07 
Generalagain ... the controler Pin
spidermike13-Nov-05 22:14
spidermike13-Nov-05 22:14 
GeneralYou missed the Sub-Heading! Pin
Balamurali Balaji11-Jul-05 20:11
Balamurali Balaji11-Jul-05 20:11 
Hi paul,

Just now, I come across your nice article on MVC and I also looked into various comments on missing controller class. Actually, you have it in your code. The class BookPriceChangedEventArgs is a controller class, but missed to point out that it is a controller. It represents the translation of interactions with the view into actions to be performed by the user.

regards,
good luck

(bala)
WWW.DotnetSpider.COM
GeneralSource Code Pin
Alan James1-Mar-05 5:56
Alan James1-Mar-05 5:56 
GeneralRe: Source Code Pin
Anonymous9-May-05 8:32
Anonymous9-May-05 8:32 
GeneralRe: Source Code Pin
RoeldeB16-Sep-08 1:33
RoeldeB16-Sep-08 1:33 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.