-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathTemplateModule.cs
More file actions
31 lines (27 loc) · 829 Bytes
/
TemplateModule.cs
File metadata and controls
31 lines (27 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.ComponentModel.Composition;
using Prism.Events;
using Prism.Mef.Modularity;
using Prism.Modularity;
namespace plugintemplate
{
[ModuleExport(typeof(TemplateModule), InitializationMode = InitializationMode.WhenAvailable)]
internal class TemplateModule : IModule
{
private readonly IEventAggregator _eventAggregator;
[ImportingConstructor]
public TemplateModule(IEventAggregator evenAggregator)
{
_eventAggregator = evenAggregator;
}
// Modules will be initialized during startup. Any work that needs to be done at startup can
// be initiated from here.
public void Initialize()
{
}
}
}