提交 d54c7e85 编写于 作者: T tanghai

TreeModule改成BehaviorTreeModule

上级 f9e63564
......@@ -13,7 +13,7 @@ namespace Editor
private static void RunInDebugMode()
{
var bootstrapper = new Bootstrapper();
Bootstrapper bootstrapper = new Bootstrapper();
bootstrapper.Run();
}
}
......
......@@ -13,7 +13,7 @@ namespace Editor
{
this.AggregateCatalog.Catalogs.Add(new AssemblyCatalog(typeof (Bootstrapper).Assembly));
this.AggregateCatalog.Catalogs.Add(new AssemblyCatalog(typeof (ViewExportAttribute).Assembly));
this.AggregateCatalog.Catalogs.Add(new AssemblyCatalog(typeof (TreeModule).Assembly));
this.AggregateCatalog.Catalogs.Add(new AssemblyCatalog(typeof (BehaviorTreeModule).Assembly));
}
protected override void InitializeShell()
......
......@@ -3,8 +3,8 @@ using Microsoft.Practices.Prism.Modularity;
namespace Modules.BehaviorTreeModule
{
[ModuleExport(moduleType: typeof (TreeModule))]
public class TreeModule: IModule
[ModuleExport(typeof (BehaviorTreeModule))]
public class BehaviorTreeModule: IModule
{
public void Initialize()
{
......
......@@ -93,7 +93,7 @@
<DependentUpon>TreeView.xaml</DependentUpon>
</Compile>
<Compile Include="TreeViewModel.cs" />
<Compile Include="TreeModule.cs" />
<Compile Include="BehaviorTreeModule.cs" />
<Compile Include="AllTreeView.xaml.cs">
<DependentUpon>AllTreeView.xaml</DependentUpon>
</Compile>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册