博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
vsto 解决 wpf 的 input 的问题
阅读量:5234 次
发布时间:2019-06-14

本文共 948 字,大约阅读时间需要 3 分钟。

就两行代码,弄了我一天,上火

[Export(typeof(IWindowManager))]    public class AddInWindowManager : WindowManager    {        protected override System.Windows.Window EnsureWindow(object model, object view, bool isDialog)        {            var window = base.EnsureWindow(model, view, isDialog);            window.WindowStartupLocation = System.Windows.WindowStartupLocation.CenterScreen;            if (model is IAddinWindow)            {                WindowInteropHelper helper = new WindowInteropHelper(window);                helper.Owner = new IntPtr(Globals.ThisAddIn.Application.Hwnd);                window.Closed += (sender, e) => System.Windows.Threading.Dispatcher.ExitAllFrames();            }            return window;        }    }

 

var w = IoC.Get
(); w.ShowWindow(rootModel, context, settings); System.Windows.Threading.Dispatcher.Run();

 

 

 

 

 

 

转载于:https://www.cnblogs.com/rock_chen/archive/2013/04/13/3018356.html

你可能感兴趣的文章
[bzoj1004] [HNOI2008] Cards
查看>>
应该是实例化对象的没有对属性赋值时,自动赋值为null,但不是空指针对象引用...
查看>>
原生HttpClient详细使用示例
查看>>
几道面试题
查看>>
Factory Design Pattern
查看>>
python中贪婪与非贪婪
查看>>
guava API整理
查看>>
无锁编程笔记
查看>>
jquery mobile
查看>>
如何在vue单页应用中使用百度地图
查看>>
Springboot使用步骤
查看>>
Spring属性注入
查看>>
Springboot-配置文件
查看>>
Springboot-日志框架
查看>>
SpringBoot-thymeleaf
查看>>
P1908-逆序对
查看>>
P1192-台阶问题
查看>>
ACM模板——康托展开
查看>>
P1025-数的划分
查看>>
P1305-新二叉树
查看>>