Reference - http://www.telerik.com/help/silverlight/radbook-data-templates.html
First and foremost I am completely new to silverlight and I am 'itching' to learn but sometimes it can be so frustrating. So I am calling on this forum to help me out.
I have tried to replicate this piece of code using VB 2010 and visual basic coding and have failed.
I do not understand where to store the images ( I have used my own images - A.jpg B.jpg C.jpg and so on - and they are on my hard drive.
..........
When I build the project, the build succeeds but I don't get a result when I run the web page. It just continues to 'search' and never concludes.
What am I doing wrong? Do I have to put the images in a dedicated folder and if so where?
I've tried adding an 'Images' Folder to my project and adding my graphic files.....Building....and 'nothing'
I've looked at properties and have drawn a blank......I really could use some help here and I bet the answer is so simple that I'm about to be embarrassed......But, quite frankly I don't care! I've tried everything I know and cannot make any headway.
Thanks
First and foremost I am completely new to silverlight and I am 'itching' to learn but sometimes it can be so frustrating. So I am calling on this forum to help me out.
I have tried to replicate this piece of code using VB 2010 and visual basic coding and have failed.
I do not understand where to store the images ( I have used my own images - A.jpg B.jpg C.jpg and so on - and they are on my hard drive.
..........
Dim myPhotos As New ObservableCollection(Of PhotoItem)() myPhotos.Add(New PhotoItem() With {.Title = "A", .Image = "A.jpg", .DateTaken = Date.Parse("3/14/2008 1:59 PM"), .Size = "858 KB"}) myPhotos.Add(New PhotoItem() With {.Title = "B", .Image = "B.jpg", .DateTaken = Date.Parse("2/12/2008 3:12 PM"), .Size = "458 KB"}) myPhotos.Add(New PhotoItem() With {.Title = "C", .Image = "C.jpg", .DateTaken = Date.Parse("3/25/2008 2:22 PM"), .Size = "843 KB"}) myPhotos.Add(New PhotoItem() With {.Title = "D", .Image = "D.jpg", .DateTaken = Date.Parse("1/14/2008 4:32 PM"), .Size = "456 KB"}) myPhotos.Add(New PhotoItem() With {.Title = "E", .Image = "E.jpg", .DateTaken = Date.Parse("6/14/2008 2:46 PM"), .Size = "654 KB"}) myPhotos.Add(New PhotoItem() With {.Title = "F", .Image = "F.jpg", .DateTaken = Date.Parse("8/23/2008 3:59 PM"), .Size = "930 KB"}) myPhotos.Add(New PhotoItem() With {.Title = "G", .Image = "G.jpg", .DateTaken = Date.Parse("3/14/2008 1:59 PM"), .Size = "623 KB"}) RadBook1.ItemsSource = myPhotos .......
When I build the project, the build succeeds but I don't get a result when I run the web page. It just continues to 'search' and never concludes.
What am I doing wrong? Do I have to put the images in a dedicated folder and if so where?
I've tried adding an 'Images' Folder to my project and adding my graphic files.....Building....and 'nothing'
I've looked at properties and have drawn a blank......I really could use some help here and I bet the answer is so simple that I'm about to be embarrassed......But, quite frankly I don't care! I've tried everything I know and cannot make any headway.
Thanks