Results 1 to 2 of 2
- 12-03-2012, 01:26 AM
#1
Hey everyone, I'm trying to develop my first Windows Phone 8 app, and I had a question that I can't find any answers to online:
for the time being, I'm trying to create a basic list that just displays thumbnails of photos the user has selected using the photo chooser in WP8 How to use the photo chooser task for Windows Phone
I'm able to display photo thumbnails if I use a URI from a website url, but I can't display an image when trying to get the file path from the device. Here's some of the basics (I have an object that essentially just has the uri string for an image source)
<ListBox Name="lstbox" Grid.Row="1" Margin="10, 10, 10, 10">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal" Height="80" Width="400">
<Image Source="{Binding ImageSource}" Width="80" Height="80"/>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</Listbox>
myImages.Add(new myImage(new Uri("http://www.google.com.au/logos/classicplus.png"))); <----- works fine, displays an image from a website
what does NOT work is doing something like this using the photo chooser:
void photoChooserTask_Completed(object sender, PhotoResult e)
{
if (e.TaskResult == TaskResult.OK)
{
myImages.Add(new myImage( new Uri(e.OriginalFileName)));
}
}
can someone please help me with this? - 12-03-2012, 10:19 PM #2
Is "myImage" (seen in the code above when you call the constructor "new myImage...") a class that you defined? If so, can you provide the code for the ImageSource property?
My apps:
Multi-language offline dictionary application: HoshiDict
Browser with integrated translation and word lookup tools (perfect for language learning): Tap2Trans Browser
Google Cloud Printing from your phone: KumoPrint
Alternative PDF Reader: Palt Reader
Similar Threads
-
I got a response from Elop on Lumia 920 Daytime photo quality.
By chrgeorgeson in forum Nokia Lumia 920Replies: 32Last Post: 11-11-2012, 12:38 PM -
Purchased app not showing up on device
By mrasmussen in forum Windows Phone 7Replies: 4Last Post: 05-29-2011, 11:43 PM -
Background image on Pictures
By ikkf in forum Windows Phone 7Replies: 7Last Post: 05-17-2011, 08:56 AM
LinkBack URL
About LinkBacks
































Latest Comments