使用c#以窗口形式上传图片
图像应存储在项目下的目录(image)中
the images should be store in a directory(image) under the project
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
图像应存储在项目下的目录(image)中
the images should be store in a directory(image) under the project
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
在 Windows 窗体中,用户不需要“上传”文件,因为应用程序在本地运行。相反,询问用户文件名(通常通过打开的对话框);然后将指定的文件复制到目标位置。
In windows forms, the user doesn't need to 'upload' the file, because the application runs locally. Instead, ask the user for a filename (typically through an open dialog); then copy the indicated file to the target location.