基本信息
源码名称:WPF做的记事本
源码大小:1.50M
文件格式:.rar
开发语言:C#
更新时间:2013-10-02
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
using System; using System.Collections.Generic; using System.Linq; using System.Text; using Microsoft.Practices.Unity; using System.Windows; using SmokeNote.Logic.IService; using SmokeNote.Logic.Services; using Framework.Common.Dialog; namespace SmokeNote.Client { public class Bootstrapper : Framework.Common.Bootstrapper { protected override System.Windows.DependencyObject CreateShell() { var shell = this.Container.Resolve<Shell>(); return shell; } protected override void InitializeShell() { base.InitializeShell(); var shell = (Window)this.Shell; shell.Show(); Application.Current.MainWindow = shell; } protected override void ConfigureContainer() { base.ConfigureContainer(); //注册单例 this.Container.RegisterInstance<Logic.Models.NoteQueryCondition>(new Logic.Models.NoteQueryCondition()); //注册对话框 this.Container.RegisterType<IDialogService, Dialog.CustomDialogService>(); //注册服务 this.Container.RegisterType<ISettingsService, SettingsService>(); this.Container.RegisterType<INotebookService, NotebookService>(); this.Container.RegisterType<INoteService, NoteService>(); //注册窗口 this.Container.RegisterType<Window, Views.ModifyNotebook>(Consts.WindowNames.ModifyNotebook); this.Container.RegisterType<Window, Views.Config>(Consts.WindowNames.Config); this.Container.RegisterType<Window, Views.NoteHistory>(Consts.WindowNames.NoteHistory); this.Container.RegisterType<Window, Views.Total>(Consts.WindowNames.Total); } } }