我是DevExpress WinForms的新手,任何人都可以告诉使用FileUploader控件的简单方法。 我想从文件对话框中选择图像并将其添加到PictureEdit。
请帮助!! 提前致谢。
答案 0 :(得分:1)
不幸的是,Devexpress不提供文件上传控制( See This),因此您可以在代码中使用本机文件上传器。
一个简单的代码就是
// Create OpenFileDialog
Microsoft.Win32.OpenFileDialog dlg = new Microsoft.Win32.OpenFileDialog();
dlg.Filter = "image Files|*.jpg";
Nullable<bool> result = dlg.ShowDialog();
if (result == true)
{
this.pictureEdit1.Image = Image.FromFile(dlg.FileName) // Not tested this one
}
希望这有帮助