gpt4 book ai didi

c# - 从列表框文件名 C# winform 打开图像

转载 作者:行者123 更新时间:2023-11-30 23:28:38 24 4
gpt4 key购买 nike

我一直在业余时间研究这个,但无济于事。我真的需要帮助才能让它发挥作用。

我在 C# 中有一个 winform。我目前正在使用列表框和图片框来显示嵌入的图像资源。我只想用文件名填充列表框,因为完整路径比列表框的宽度长,可以容纳我的表单。

这是我正在使用的一些代码:

string[] x = System.IO.Directory.GetFiles(@"C:\Users\bassp\Dropbox\VS Projects\WindowsFormsApplication1\WindowsFormsApplication1\Resources\", "*.jpg");
pictureBox1.SizeMode = PictureBoxSizeMode.Zoom;
foreach (string f in x)
{
string entry1 = Path.GetFullPath(f);
string entry = Path.GetFileNameWithoutExtension(f);
listBox1.DisplayMember = entry;
listBox1.ValueMember = entry1;
listBox1.Items.Add(entry);

private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
{
pictureBox1.ImageLocation = listBox1.SelectedItem.ToString();
}

如果我用完整路径 (entry1) 填充列表框,除了由于完整路径的长度而无法看到您将选择的图像名称之外,一切都非常顺利。

当我尝试用 (entry) 填充列表框时,只有文件名出现在列表框中,这是可取的,但是,从列表框中选择时图像将不再打开。

我怎样才能让它正常工作?非常感谢您的帮助。

帕特里克

最佳答案

通过设置 DisplayMemberValueMember 属性,您走在了正确的轨道上,但是您需要进行一些更正,这里可能没有必要.

将原始目录路径存储在一个单独的变量中,然后只需将其与 SelectedIndexChanged 事件中的文件名组合即可获得原始文件路径。

string basePath =
@"C:\Users\bassp\Dropbox\VS Projects\WindowsFormsApplication1\WindowsFormsApplication1\Resources\";

string[] x = Directory.GetFiles(basePath, "*.jpg");

foreach (string f in x)
{
listBox1.Items.Add(Path.GetFileNameWithoutExtension(f));
}

private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
{
pictureBox1.ImageLocation =
Path.Combine(basePath, listBox1.SelectedItem.ToString()) + ".jpg";
}

关于c# - 从列表框文件名 C# winform 打开图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35922374/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com