UI Design Choices and How to Implement Them

Posted by AKRamkumar on Stack Overflow See other posts from Stack Overflow or by AKRamkumar
Published on 2010-04-06T20:10:16Z Indexed on 2010/04/06 20:43 UTC
Read the original article Hit count: 249

Filed under:
|
|
|
|

I am making an application that is a dashboard/widget host.
I am using MEF to load the plugins and I have a ui Concept Idea like this:

http://i42.tinypic.com/scb6nd.png

  1. Is this a good design choice?
  2. How would I implement the Navigation?
  3. Is there any Design Patter you would reccomend for this?

Note: My contract interface is this.

public interface IDashboardPlugin
{
   public string Name{get;}
   public string Description{get;}
   public string Author{get;}
   public UIElement UI{get;}
}

© Stack Overflow or respective owner

Related posts about c#

Related posts about wpf