我有自定义<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="preview_site">
<div class="preview_wrap">
<iframe class="frame_wrap" src="https://www.bdanzer.com"></iframe>
</div>
</div>
<button id="resize">Button</button>
。我的程序可以很好地从外部加载DLL。我想要做的是将主题和程序作为一个文件。我将其添加为项目资源,但我不知道它是否有效或如何编码。
答案 0 :(得分:0)
我的问题解决了!我使用ILMerge合并了theme.dll
和Application.exe
。
DLL
和Application.exe
复制到ILMerge
文件夹command prompt
(SHIFT +右键单击)C:\ ilmerge&GT; ilmerge Application.exe theme.dll /out:MergedApp.exe / target:winexe / targetplatform:&#34; v4,C:\ Program Files(x86)\ Reference Assemblies \ Microsoft \ Framework \ .NETFramework \ v4.6.1&# 34;
*我知道这个答案不是如何将自定义主题添加为资源,但这解决了我将DLL和EXE作为单个文件的问题。