Click here to Skip to main content
15,881,812 members
Articles / Mobile Apps / Windows Mobile

Passing Values Between Multiple Projects using Interface

Rate me:
Please Sign up or sign in to vote.
4.00/5 (5 votes)
12 Sep 2012CPOL3 min read 38.2K   991   25   5
Passing Values Between Multiple Projects using Interface

Introduction

While I was doing some major updates on a project I was doing for a client, I was also thinking about how to optimize the code; not just by using MVP pattern, but also by optimizing the way values were passwed between projects. Some of my class libraries were using the same type of properties and then they get updated in the main form. I noticed, though, that setting the same value into multiple objects with one type of property is pretty hard and unmanageable and also produces lots of lines of code. So I experimented a little bit and made a proof of concept on how to pass values into multiple projects with minimal coding, and also using Interface.

Background

Please take a look at the sample animation below. Here was have a satellite that moves in the form and there are three child forms. Those three child forms are the other three projects which are PlanetEarth, PlanetMars, and the PlanetSaturn project. The big form is our Main project. You'll notice that the three forms are getting updated every time the satellite makes its next move.

Image 1

One thing about using an Interface is that you can share its values to whoever uses it. Like what I did on a simple P.O.S. project. Those three forms, PlanetEarth, PlanetMars, and PlanetSaturn are using one interface but they all get the update.

So why Interface instead of making a property for each project?

Because like I said, you can share the values between multiple projects or whoever uses it. 

Let's Get Into the Code 

The GlobalInterface class library project which contains the Interface code (which has a NextPosition property signature) which we're going to use later on in the Main Project.

C#
public interface iSatellite
{
	Point NextPosition { get; set; }
}

Then we have three projects which have the same code (for demo only) which use this iSatellite interface. These are the PlanetEarth, PlanetMars, and PlanetSaturn. Let's take PlanetEarth for example.

C#
GlobalInterface.iSatellite Satellite;

public Form1()
{
	InitializeComponent();

	timer1.Interval = 100;
	timer1.Tick += new EventHandler(timer1_Tick);
}

void timer1_Tick(object sender, EventArgs e)
{
	// update the location information of the satellite
	label2.Text = string.Format("X: {0}\r\nY:{1}", 
	    this.Satellite.NextPosition.X, this.Satellite.NextPosition.Y);
}

public void InitializeSatellite(GlobalInterface.iSatellite satellite)
{
	this.Satellite = satellite;
	this.timer1.Start();
}

As you noticed, we used the Timer object to show the next location of the satellite. We could also use Event to shout that the satellite is making a next move.

InitializeSatellite(GlobalInterface.iSatellite satellite) will be called on our Main Project to bind the "this.Satellite" into our Main project. 

Next is our Main project that implements the iSatellite interface.

C#
public partial class MainController : Form, GlobalInterface.iSatellite
{
	TweenLibrary tween;
	Random destXY = new Random(DateTime.Now.Millisecond);
	List<Form> forms;

	public MainController()
	{
		InitializeComponent();
		InitializeControls();
		InitializeControlEvents();
	}

	public void InitializeControls()
	{
		// show our 3 forms
		PlanetEarth.Form1 earth = new PlanetEarth.Form1();
		earth.InitializeSatellite(this);
		earth.Show();

		PlanetMars.Form1 mars = new PlanetMars.Form1();
		mars.InitializeSatellite(this);
		mars.Show();

		PlanetSaturn.Form1 saturn = new PlanetSaturn.Form1();
		saturn.InitializeSatellite(this);
		saturn.Show();

		// then put them on the list to update their location
		forms = new List<Form>()
		{
			earth, mars, saturn
		};

		tween = new TweenLibrary();

		timer1.Interval = Convert.ToInt32(TimeSpan.FromSeconds(3).TotalMilliseconds);
		timer1.Tick += new EventHandler(timer1_Tick);
		timer1.Start();
	}

	public void InitializeControlEvents()
	{
		this.LocationChanged += new EventHandler(Form1_LocationChanged);
	}

	/// <summary>
	/// update child form positions
	/// </summary>
	/// <param name="sender"></param>
	/// <param name="e"></param>
	void Form1_LocationChanged(object sender, EventArgs e)
	{
		int last_y = this.Location.Y;

		foreach (Form frm in forms)
		{
			frm.Location = new Point(this.Location.X + this.Size.Width, last_y);
			last_y = frm.Location.Y + frm.Size.Height;
		}
	}

	void timer1_Tick(object sender, EventArgs e)
	{
		this.NextPosition = new Point()
		{
			X = destXY.Next(this.ClientSize.Width),
			Y = destXY.Next(this.ClientSize.Height)
		};

		tween.startTweenEvent(picSatellite, this.NextPosition.X, this.NextPosition.Y, "easeinoutcubic", 100);
	}

	/// <summary>
	/// Implement GlobalInterface.iSatellite property
	/// </summary>
	public Point NextPosition { get; set; }
}

As you can see on the code below, we implemented the iSatellite interface with the NextPosition property with a Point type which we're going to use to update the location of the satellite. In the timer1_Tick event this gets triggered every three seconds and you can see we update the "NextPosition" X and Y values. The three projects that are bound in the interface are automatically updated.

So what are the benefits of the Interface in this type of problem about passing values between multiple visual studio projects?

  • Lesser code 
  • We do not need to update the values for each project. 
  • Easy to manage 
  • More structured. 

Comparing the Usage of Property vs. Interface 

Let's say each project PlanetEarth, PlanetMars, and PlanetSaturn are using the NextPosition Property

C#
void timer1_Tick(object sender, EventArgs e)
{
	Point newXY = new Point()
	{
		X = destXY.Next(this.ClientSize.Width),
		Y = destXY.Next(this.ClientSize.Height)
	};
	
	this.earth.NextPosition = newXy;
	this.mars.NextPosition = newXy;
	this.saturn.NextPosition = newXy;
}

But when we use Interface 

C#
void timer1_Tick(object sender, EventArgs e)
{
	this.NextPosition = new Point()
	{
		X = destXY.Next(this.ClientSize.Width),
		Y = destXY.Next(this.ClientSize.Height)
	};

	tween.startTweenEvent(picSatellite, this.NextPosition.X, this.NextPosition.Y, "easeinoutcubic", 100);
}

We only update the property we implemented from iSatellite and all three projects are automatically updated as well. 

Hope you learned about another special way of implementing Interface in your projects, not only in Windows Forms, but in Windows Phone, Windows 8, Silverlight, and WPF projects as well. 

Please feel free to play with the sample project at the top of the page.

License

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


Written By
Founder Capploud
Philippines Philippines
I am an experienced Applications Developer and had worked professionally for over 6 years. I have been writing codes and building different applications for over 13+ years. My work is mostly for Microsoft technologies such as .NET. Yes I am Microsoft technology enthusiast.

My field of expertise in .NET technology are Desktop and Windows Mobile and Windows Phone. I occasionally write ASP.NET too for clients.

I have wide experience of different programming languages and scripts such as: Turbo Pascal, Batch Scripts, C/C++, Visual Basic Classic, Visual Basic .NET, Java, HTML, CSS, ASP Classic, VB Script, ASP.NET, T-SQL, MySQL, PHP, C#, Javascript, jQuery, HTML5, RegEx, XAML, XML, JSON, and XPath

I am also experienced in different platforms such as: Google Data API, Google Map API, Twitter API, Facebook API, Flickr API, Skydrive API, SVN, GitHub, Drupal, and Orchard.

I am interested in Microsoft technologies, User Experience and User Interfaces, Algorithms, Robotics, Astronomy, Architecture, Electrical, Mechanics, and Extra Therestrial Life on other planets.

I am also offering free coding and application development consultations with students having a problem with their Thesis projects.

View my full Curriculum Vitae here
http://ss.jaysonragasa.net/?mycv

Comments and Discussions

 
GeneralMy vote of 3 Pin
yatz112-Jun-14 21:47
yatz112-Jun-14 21:47 
QuestionDoubts about your concept Pin
johannesnestler23-Jan-14 2:09
johannesnestler23-Jan-14 2:09 
AnswerRe: Doubts about your concept Pin
Jayson Ragasa24-Jun-15 16:59
Jayson Ragasa24-Jun-15 16:59 
GeneralRe: Doubts about your concept Pin
johannesnestler26-Jun-15 2:06
johannesnestler26-Jun-15 2:06 
GeneralRe: Doubts about your concept Pin
Jayson Ragasa26-Jun-15 3:24
Jayson Ragasa26-Jun-15 3:24 

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.