当我使用pictureBox
时,我可以获得这样的图像位置(工作正常)
using (Form ps = new PhotoSlider())
{
(ps.Controls[0] as PictureEdit).Image.Location = e.Item.Caption;
ps.ShowDialog();
}
但是使用Devexpress PictureEdit我无法设置图像位置。
任何人都知道我该怎么办?
答案 0 :(得分:1)
我不认为DevExpress PictureEdit是这样工作的 - 我实际上不能尝试这个因为我的DevExpress许可证已经过期但是假设e.Item.Caption是一个文件名,你可以做类似的事吗
using (Form ps = new PhotoSlider())
{
(ps.Controls[0] as PictureEdit).Image= Image.FromFile(e.Item.Caption);
ps.ShowDialog();
}
想法是自己设置图像属性......
祝你好运..!