在 LightSwitch 中获取其他文件
我想向 LightSwitch 应用程序添加其他文件(主要是 .xlsx
和 .docx
),并在应用程序中使用这些文件,例如作为文件流。
做到这一点的最佳方法/做法是什么?
到目前为止,我可以将文件添加到客户端项目(在文件视图下)。当我进行调试构建或发布应用程序时,此文件会显示在 bin\debug\bin\Server
目录中。现在是棘手的部分。
如何获取该文件的文件流?
安装在哪个目录下?
I want to add additional files (mostly .xlsx
and .docx
) to a LightSwitch application and use this files in the application, for example as a filestream.
What is the best way/practice to do this?
So far I can add files to the client-project (under the file-view). This file then shows in the bin\debug\bin\Server
directory when I make a debug-build or publish the application. So now comes the tricky part.
How do I get a file stream of this files?
In which directory is it installed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
点击发布按钮后,我自己弄清楚了。这个 博文描述了如何使用嵌入资源作为图像。
当您将文件添加到客户端项目时,您必须将构建操作设置为“嵌入式资源”,然后您可以使用以下代码获取流:
After hitting the post-button I figured it out myself. This blog post describes how to use embedded resources as images.
When you have added a file to the client-project, you have to set build action to “Embedded Resource” and then you can get a stream using the following code: