Beispiel #1
0
 public UiPlugin(IUiPluginContext context)
 {
     Context = context;
     _menu   = new UiMenuItem(this)
     {
         Header = "Play"
     };
     Debug.WriteLine(this, "Plugin created");
     context.PropertyChanged += Context_PropertyChanged;
 }
Beispiel #2
0
 public UiPlugin(IUiPluginContext context)
 {
     Context = context;
     _menu   = new UiMenuItem(this)
     {
         Header = "Export selected rundown as XML"
     };
     Debug.WriteLine(this, "Plugin created");
     context.PropertyChanged += Context_PropertyChanged;
 }