CodePaste Logo
New Snippet New Snippet Recent Snippets Recent Snippets My Snippets My Snippets Web Code Search Snippets Search
Sign inor Register
Language: C#

VM adapter

404 Views
Copy Code Show/Hide Line Numbers
[Export]
public class OrderView {
  [Import("OrderViewViewModel")]
  public object ViewModel {
    get{return this.DataContext;}
    set{this.DataContext = value;}
  }
}
 
[Export]
public class SomeOrderViewModel {
}
 
public class OrderViewModelAdapter {
  [Import]
  public SomeOrderViewModel ImportedViewModel {get;set;}
 
  [Export("OrderViewModel")]
  public object ExportedViewModel {
    get{return ImportedViewModel;}
  }
}
 
 
  
}
by Glenn Block
  March 22, 2010 @ 11:27am

Add a comment


Report Abuse
brought to you by:
West Wind Techologies



If you find this site useful and use it frequently please consider making a donation to support this free service.
Donate