Click here to Skip to main content
15,888,014 members
Articles / Caliburn.Micro
Tip/Trick

[Caliburn.Micro] Passing Control Event to ShellView

Rate me:
Please Sign up or sign in to vote.
5.00/5 (2 votes)
6 Sep 2012CPOL 14.1K   135   2   1
How to pass Control Event to ShellView (Main Page) using Caliburn.Micro?

Introduction

In Caliburn.Micro, we have a series of supporting services for building presentation tiers. Among them is the EventAggregator, a service which supports in-process publish/subscribe. Here I explain how to pass (Publish) event from Control to Main Page (ShellView) and How to subscribe event in ShellviewModel.

Let’s start by having a look at the ItemClickEvent class:

First add ItemClickEvent class and write there:

C#
public string ToDoItemDescription { get; set; }

public ItemClickEvent(string toDoItemDescription)
{
	ToDoItemDescription = toDoItemDescription;
}

After creating ItemClassEvent class, add new Item PageOneView which contains a Simple Button and add PageOneViewModel which contains Button click like:

C#
public class PageOneViewModel : Conductor<screen>.Collection.OneActive
{
	public void ClickMe()
       {
       	IoC.Get<ieventaggregator>().Publish(new ItemClickEvent("Button Click"));
		// Here you can pass your custom value and variable in ItemClassEvent().
       }
} 

Finally ShellViewModel looks like:

C#
namespace EventPassingToShellView
{
    [Export(typeof(IShell))]
    public class ShellViewModel : Conductor<screen>
    .Collection.OneActive, IShell, IHandle<itemclickevent>
    {
        public ShellViewModel()
        {
            ShowPageOne();
            IoC.Get<ieventaggregator>().Subscribe(this);

        }
        public void ShowPageOne()
        {
            ActivateItem(new PageOneViewModel());
        }
        
        #region IHandle<itemclickevent> Members

        public void Handle(ItemClickEvent message)
        {
		// Got message from  PageOneViewModel what ever you pass it.
           MessageBox.Show(message.ToDoItemDescription);
        }

        #endregion
    }
}   

Finally Project Structure looks like:

Project Structure

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionGoing the other way Pin
DBLWizard28-Nov-12 12:00
DBLWizard28-Nov-12 12:00 

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.