Author: itsmallmouse | Posted on: 6/9/2008 5:17:47 PM | Views : 1228


  public partial class UserApp : MyProject.Core.Application
 {
 
 }

    public partial class MyProject.Core.Application : ControlBase
 {
 
 }

    public abstract class ControlBase : UserControl, IDisposable
 {

 }

class ControlBase and Application are in project that have name: Core

class UserApp is in project that have name: User

All project is contained in a solution name: MyProject


User.xaml


<Grid xmlns="http://schemas.microsoft.com/client/2007"        
        xmlns:app="clr-namespace:MyProject.Applications.User;assembly=User">
    <app:UserApp > </app:UserApp>
</G ...

Go to the complete details ...