1
//<SnippetAddInViewCode>
2 using System
; // NotImplementedException
3 using System
.AddIn
.Pipeline
; // AddInBaseAttribute
4 using System
.Windows
; // FrameworkElement
5 using System
.Windows
.Controls
; // UserControl
10 /// Defines the add-in's view of the contract.
13 public class WPFAddInView
: UserControl
15 // The add-in's override of this method will return
16 // a UI type that directly or indirectly derives from
18 public virtual FrameworkElement
GetAddInStatusUI() {
19 // The add-in's should override this method
20 throw new NotImplementedException("Not Implemented");
24 //</SnippetAddInViewCode>