0

我正在开发一个 wpf 应用程序,我从 sql 服务器加载我的图像路径,而不是将所有图像保存在解决方案下的文件夹中。构建后我的图像大约有 200MB,我的视觉工作室开始给我一个错误,“没有足够的存储空间来完成这个过程”。

顺便说一句,从数据库显示图像的最佳方式是什么,我应该在解决方案下复制它还是有任何其他方式可以链接图像。

任何帮助表示赞赏

谢谢你

4

2 回答 2

0

It's possible that you setup publishing or making deployment package or something of that kind and VS tries to copy all your media files to another location without enough free space.

You can look at FILESTREAM - also check this and other articles for recomendations on particular case.

于 2013-02-22T21:11:25.807 回答
0

请在开始此操作之前关闭 Visual Studio

  1. 以管理员身份启动 Visual Studio 命令提示符。
  2. 键入“BCDEDIT /Set increaseUserVa 3072” - 它将更改引导配置,以便用户模式内存向前发展为 3GB。
  3. 将目录更改为 devenv.exe 所在的位置:C:\Program Files\Microsoft Visual Studio 9\Common7\IDE\
  4. 键入 editbin /LARGEADDRESSAWARE devenv.exe
  5. 重启你的电脑。

像这样的命令行:

BCDEDIT /Set increaseUserVa 3072(按回车键)
editbin /LARGEADDRESSAWARE devenv.exe(按回车键)

现在重新启动您的机器。

于 2015-10-06T06:41:49.593 回答