Silverlight 图像从位置获取源以及文本框中的文本 (www.abc.com/photos/111.jpg)

发布于 2025-01-06 17:08:58 字数 480 浏览 2 评论 0原文

我使用以下代码将图像放置在 WinForm 应用程序的图像框中。该表单有一个包含人员姓名的列表框。当用户选择名称时,文本框和图像框会显示该人的详细信息。该代码提供图像的位置/文件夹,并添加“ID 文本框”中的 ID 号,后跟“.jpg”以完成位置。

WinForm代码: peopleDetailsPhotoImg.Load(@"http://www.abc.com/OA/Photos/" + peopleDetailsIDTxt.Text + ".jpg");

我需要在新的 Silverlight 应用程序中具有相同的功能。我不知道如何编码相同类型的位置。我需要“文件夹位置”+“textbox.text”+“.jpg”。尝试在位置行中使用多个“”和 + 标记时出现格式错误。

Silverlight 应用程序使用列表框和多个文本框(当用户选择名称时填充)来正常工作,但是使用位置 + ID + .jpg 的能力让我停滞不前!

任何帮助将不胜感激。

布莱恩

I am using the following code to place an image inside an imagebox in a WinForm application. The form has a listbox with people's names. As the user selects a name the textboxes and imagebox shows the person's details. The code provides the location/folder of the images and adds the ID number from the "ID textbox" followed by ".jpg" to complete the location.

WinForm Code:
peopleDetailsPhotoImg.Load(@"http://www.abc.com/OA/Photos/" + peopleDetailsIDTxt.Text + ".jpg");

I need the same functionality within a new Silverlight application. I can't figure how to code the same type of location. I need "folder location" + "textbox.text" + ".jpg". Get errors with the formating when trying to use multiple " " and + marks within the location line.

The Silverlight app works fine using the listbox and multiple textboxes that fill as the user selects a name however the ability to use the location + ID + .jpg has me at a stand still!

Any help would be appreciated.

Brian

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

阳光①夏 2025-01-13 17:08:58

尝试 String.Concat(@"http://www.abc.com/OA/Photos/", textbox.Text, ".jpg")

Try String.Concat(@"http://www.abc.com/OA/Photos/", textbox.Text, ".jpg")

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文