- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Caliburn Micro 开发 WPF 应用程序。此应用程序的一些 View 需要加载到 AutoCAD 环境中。 AutoCAD 编程环境允许开发 AutoCAD 插件(dll 类型)并将它们加载到 AutoCAD 环境中。
由于 AutoCAD 插件类型 (dll),插件没有应用程序对象,因此必须为此自定义 Bootstrap 。根据 Caliburn Micro 文档 here (Scroll down to "Using Caliburn.Micro in Office and WinForms Applications")我们可以继承非通用 Bootstrap 并将“false”传递给基本构造函数的“useApplication”参数。所以,我继续创建了定制的 Bootstrap 。
问题是永远不会调用 ConfigureContainer() 重写,也不会初始化任何内容。另外,我不确定如何使用 ViewModel 优先概念加载 ShellView。这是我到目前为止提出的一些代码。
Bootstrap
public class AutocadMefBootStrapper : Bootstrapper {
private CompositionContainer container;
private ElementHost host;
public AutocadMefBootStrapper(ElementHost host) : base(false) {
this.host = host;
}
protected override void Configure() { //Not getting invoked.
...
var rootViewModel = container.GetExportedValue<IShell>();
var rootView = ViewLocator.LocateForModel(rootViewModel, null, null);
host.Child = rootView;
}
}
我有一个 Windows 窗体,AutoCAD 在需要时加载它。在 Windows 窗体的加载事件中,我创建了一个实例化的 cuztomized caliburn 微型 Bootstrap ,并期望 Bootstrap 执行所有魔法并加载 Shell。但是外壳不加载。我在 AutoCAD 中显示空白窗口。以下是 Windows 窗体的编码方式。
public partial class WinFormHost : Form {
private void WinFormHost_Load(object sender, EventArgs e) {
ElementHost host = new ElementHost();
host.Dock = DockStyle.Fill;
Controls.Add(host);
AutocadMefBootStrapper bootStrapper = new AutocadMefBootStrapper(host);
}
}
这是我的 ShellView
<UserControl x:Class="RelayAnalysis_Autocad.Views.ShellView"
...
<Grid>
<TextBlock>Hello There</TextBlock>
</Grid>
</UserControl>
和 ShellViewModel
[Export(typeof(IShell))]
public class ShellViewModel : Conductor<object>, IShell {
protected override void OnActivate() {
base.OnActivate();
}
}
总而言之,我正在尝试在未使用应用程序对象加载的托管环境中使用 Caliburn Micro。我无法配置 Caliburn Micro,因为 ShellView 从不加载。
最佳答案
这个问题已经解决了。问题是在 AutoCAD 本身中加载支持程序集 (dll) 时出错。请参阅this线。一旦程序集被正确加载,我就可以使用 Caliburn Micro,它也可以在非 WPF 环境中工作。
编辑:我将逻辑地展示这个过程。我在纯 wpf 应用程序中开发的 wpf 屏幕将在 AutoCAD 插件中重新使用,但由于 autocad 插件是类库 (dll),因此没有可用的应用程序对象。启动 AutoCAD 时,插件代码会在我可以初始化 caliburn 微型 Bootstrap 的位置执行。这是相关的插件代码。
MyPlugin.cs
public class MyPlugin : IExtensionApplication {
//Called when plugin is loaded. This is where I load xaml resources, since there is no App.xaml available
void IExtensionApplication.Initialize() {
if (System.Windows.Application.Current == null) {
new System.Windows.Application { ShutdownMode = ShutdownMode.OnExplicitShutdown };
}
System.Windows.Application.Current.Resources.MergedDictionaries.Add(System.Windows.Application.LoadComponent(
new Uri("RelayAnalysis_Autocad;component/Content/Styles/CommonBrushes.xaml", UriKind.Relative)) as ResourceDictionary);
System.Windows.Application.Current.Resources.MergedDictionaries.Add(System.Windows.Application.LoadComponent(
new Uri("RelayAnalysis_Autocad;component/Content/Styles/Button.xaml", UriKind.Relative)) as ResourceDictionary);
...
//Load Other xaml resources
...
//Initialize the Bootstrapper
AutocadMefBootStrapper bootstrapper = new AutocadMefBootStrapper();
}
//Called when plugin is unloaded
void IExtensionApplication.Terminate() {
// Do plug-in clean up here
System.Windows.Application.Current.Shutdown();
}
请注意,该应用程序具有显式关闭模式。这是必需的,虽然我不记得为什么!
Bootstrapper 没有太大区别,除了我们将 false 传递给基本构造函数(如文档中所述)。这是 Bootstrapper 的样子
AutocadMefBootStrapper.cs
public class AutocadMefBootStrapper : Bootstrapper {
public static CompositionContainer container;
public AutocadMefBootStrapper()
: base(false) {
}
protected override void Configure() {
//Create and Add Catalogs.
AssemblyCatalog currentAssemblyCatalog = new AssemblyCatalog(Assembly.GetExecutingAssembly());
AssemblyCatalog domainAssemblyCatalog =
new AssemblyCatalog(Assembly.GetAssembly(typeof(RelayAnalysis_Domain.Entity.Rack)));
...
}
这是配置部分,仅在加载插件并配置 calibur micro 时发生一次。在此之后,代码与 AutoCAD 有点相关,但为了完整起见,我将共享。
QueryRelay.cs此类接受来自 AutoCAD 用户的命令输入,然后显示请求的 View
public class QueryRelay {
//This command is used to display a particular View. This is entered from AutoCAD Command Window
public void QueryRelayCommand() {
//Get the ViewModel for the screen from Container
AcadRelayListViewModel relayListViewModel = AutocadMefBootStrapper.container.GetExportedValue<AcadRelayListViewModel>();
IWindowManager windowManager = AutocadMefBootStrapper.container.GetExportedValue<IWindowManager>();
windowManager.ShowWindow(relayListViewModel);
...
}
}
由于 AutoCAD 中的窗口是使用 AutoCAD 的 API 显示的,因此我不得不稍微自定义 Caliburn Micro WindowManager。这是 CustomWindowManager 的代码
CustomWindowManager.cs
public class CustomWindowManager : WindowManager {
public override void ShowWindow(object rootModel, object context = null, IDictionary<string, object> settings = null) {
Autodesk.AutoCAD.ApplicationServices.Application.ShowModalWindow(null, CreateWindow(rootModel, false, null, null), false);
}
}
我要求 CaliburnMicro 从 ViewModel(上面代码中的 rootModel)创建 View ,然后使用 AutoCAD API 将其加载到 AutoCAD 中。 View 的显示方式取决于托管应用程序(在我的例子中是 AutoCAD)。
最后必须在 BootStrapper Configure 中注册 CustomWindowManager
protected override void Configure() {
...
var batch = new CompositionBatch();
batch.AddExportedValue<IWindowManager>(new CustomWindowManager());
container.Compose(batch);
...
}
问候,涅盘
关于wpf - 无应用程序对象模式下的 Caliburn micro,就像在 AutoCAD dll 插件中一样,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13658711/
我有一个 Windows Service(一个发布版本),我替换了一个在 Debug模式下构建的 DLL 并尝试启动服务。它引发了错误无法加载文件或程序集“名称”或其依赖项之一。尝试加载格式不正确的程
我使用 Microsoft Visual Basic 6.0 Enterprise Edition SP6 开发了一个 VB6 应用程序。 我已将可执行文件复制到未安装 VB6 的计算机 C。 我已在
我有很多小的 DLL,我想将它们组合成一个大的(更)DLL(如 suggested here)。我可以通过合并我的项目来做到这一点,但我想要一种不那么干扰的方式。 可以将多个 DLL 合并为一个单元吗
我想将非托管 DLL 和图像文件与托管 DLL 合并。我该怎么做?可能吗? 最佳答案 很有可能。这可以通过 bxilmerge 来完成此解决方案可以将非托管 DLL 和图像或其他文件与托管 DLL 合
如何在Windows Server 2003上安装msvcr71.dll,这是我的软件所需的。我真的不想将此dll复制到system32文件夹,因为它可能会破坏此目标系统。 最佳答案 只需将其复制到程
我最近遇到了一个安装在我的系统上的 DLL,Dependancy Walker(以及我尝试过的所有其他实用程序)说按名称或顺序导出为零,但文件大小约为 4mb。我认为 DLL 的唯一目的是导出供其他代
我终于让我的本地主机在本地显示该站点。一切似乎都在朝着这个方向努力。我的下一步是当网站使用 ActiveX.dll 中的函数时,实际上能够从 VB6 IDE 进入代码 更新: 我更新了代码并删除了我在
首先,我指的是Windows环境和VC++编译器。 我想要做的是重建一个Vc++ dll并与已经链接到该lib的exe保持兼容性,而不必重建该exe或使用LoadLibrary动态加载该dll。换句话
我以前这样做过,我不记得我是从网上下载的 DLL 还是其他东西,但我不想感染病毒。我需要访问这个命名空间,以便我可以拥有 Webbrowswer 控件不提供的额外功能。 如何准确添加 Com 引用。还
我正在尝试为依赖于 ghostscript 的库创建 Nuget 包,因此引用 gsdll32.dll - 一个非托管库。我不能只包含一个标准的 dll 引用。我应该把它放在 nuget 目录结构中的
如果我有 Windows 可执行文件,我如何找出它将加载哪些 dll? 我只是谈论哪些将静态加载,而不是那些可能使用 LoadLibrary 等动态加载的内容。 最佳答案 dumpbin是VC++自带
这可能是一个非常菜鸟的问题,但在当今的网络应用程序开发世界中,许多程序员不需要过多处理 dll,因此也懒得去了解它们的用途。 那么什么是dll? 它有什么用? 它是如何工作的? 如何创建一个? 在什么
所以我刚刚开始使用 OpenTK,并将此代码放在一个继承 GameWindow 类的类中: protected override void OnRenderFrame(FrameEventArgs e
如何调试未由 java 应用程序加载的 dll。 场景是这样的:我的 java 应用正在加载正在使用另一个 dll 的 jni.dll,而那个 dll 正在使用另一个 dll。 javajni.dll
我将“更好”放在引号中,因为这是一个定性问题。几年来我一直在编写 COM DLL,直到最近才发现并成功使用了带有 Typelib 概念的标准 DLL。 使用 COM DLL 代替 DLL+Typeli
这种用户机器可能没有msvcp100.dll、msvcp100.dll之类dll的情况怎么处理?我不希望我的软件因为这种错误而无法安装在用户的机器上。我一直在考虑要么找到一个工具并将每个需要的 dll
在 VS2012 中使用 C# .NET 和 COM 互操作,我正在开发一个用于其他几个程序的公共(public)库。为了简化集成,我想将整个库缩减为一个 DLL。该库的特点之一是本地化。它有包含多种
我在 .Net 中使用 FieldTalk Modbus。当我运行应用程序时,我在为 MbusTcpMasterProtocol 创建对象时遇到错误。 MbusTcpMasterProtocol mb
我想指出,我知道如何向/从 GAC 添加/删除程序集。我要问的是,是否有人可以从技术角度向我解释它是如何工作的。将 dll 放在那里有什么意义 - 从节省资源的角度来看。 亲切的问候 最佳答案 将东西
我继承了一个传统的经典 ASP 应用程序,它使用 VB6 ActiveX DLL 来执行业务逻辑。 我想跟踪加载和卸载 DLL 的点。有没有办法在 VB6 DLL 中拦截这些事件? 在相关说明中,Cl
我是一名优秀的程序员,十分优秀!