Commit bd4c089
Changed files (10)
trunk
src
MyMoney
Presentation
Presenters
Views
Navigation
Shell
trunk/src/MyMoney/Presentation/Core/presenter_registry.cs
@@ -4,11 +4,12 @@ using MyMoney.Domain.Core;
namespace MyMoney.Presentation.Core
{
public interface IPresenterRegistry : IRegistry<IPresenter>
- {}
+ {
+ }
public class presenter_registry : IPresenterRegistry
{
- private readonly IRegistry<IPresenter> presenters;
+ readonly IRegistry<IPresenter> presenters;
public presenter_registry(IRegistry<IPresenter> presenters)
{
trunk/src/MyMoney/Presentation/Views/Shell/window_shell.cs
@@ -1,4 +1,5 @@
using System.ComponentModel;
+using System.ComponentModel.Composition;
using System.Linq;
using System.Windows.Forms;
using MyMoney.Presentation.Resources;
@@ -18,6 +19,7 @@ namespace MyMoney.Presentation.Views.Shell
void clear_menu_items();
}
+ [Export(typeof(IShell))]
public partial class window_shell : Form, IShell
{
public window_shell()
trunk/src/MyMoney/MyMoney.csproj
@@ -309,6 +309,11 @@
<Compile Include="Presentation\Model\messages\new_project_opened.cs" />
<Compile Include="Presentation\Model\messages\saved_changes_event.cs" />
<Compile Include="Presentation\Model\messages\unsaved_changes_event.cs" />
+ <Compile Include="Presentation\Presenters\Navigation\Build.cs" />
+ <Compile Include="Presentation\Presenters\Navigation\company_task_presenter.cs" />
+ <Compile Include="Presentation\Presenters\Navigation\ExpandoBuilder.cs" />
+ <Compile Include="Presentation\Presenters\Navigation\ExpandoItemBuilder.cs" />
+ <Compile Include="Presentation\Presenters\Navigation\IActionTaskPresenter.cs" />
<Compile Include="Presentation\Presenters\Shell\tool_bar_presenter.cs" />
<Compile Include="Presentation\Presenters\Navigation\action_tasks_presenter.cs" />
<Compile Include="Presentation\Presenters\Navigation\navigation_presenter.cs" />