Silverlight 图像从位置获取源以及文本框中的文本 (www.abc.com/photos/111.jpg)
我使用以下代码将图像放置在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试
String.Concat(@"http://www.abc.com/OA/Photos/", textbox.Text, ".jpg")
Try
String.Concat(@"http://www.abc.com/OA/Photos/", textbox.Text, ".jpg")