Is there any control which can be used to display the image on the form in Silverlight 4.
if yes how can i use the control and if not what can i do to show a image on my form.
Thanks
<Image Source="/path"></Image>
Related
I want to display Images/Thumbnails of photos that I've been taking in a horizontal view as a part of my content page.
I've stored the images paths as strings in a ObservableCollection. What's the best approach to do this in XAML and PCL.
Would be great if 3 or something images are shown on the screen, and standard image if no images have been added or if string is null, and to have these in a scrollview or listview so that all of the images in the ObservableCollection could be displayed.
maybe something like this
/Oliver
Use Bindable (Horizontal) Scroll View. see this link it's help you.
http://www.fabiocozzolino.eu/a-little-and-simple-bindable-horizontal-scroll-view/
What is the best approach to change TextBlocks to TextBoxes after clicking on Edit button for a Windows 8 Store App? This is something similar to an iOS app that after clicking on an Edit button editable fields become TextBoxes and you can then change data.
You don't need to use TextBlock just use TextBox with IsReadOnly property.
on button click mark the IsReadOnly="True"
I think you want the IsReadOnly property. IsReadOnly=true; when you don't want to let them edit the textbox, IsReadOnly=false; when you want to let them edit it.
How to crop an image coming from server into popup? I have image coming from web service and showing it into a popup on a click on a table. I want to add cropping functionality into it. How can I do it??
There are a number of open source image cropping libraries on cocoacontrols.com Here's one that replicates Apple's crop image feature. You can then display the editing view controller in a popover when the user selects the row.
Is there a control in vb.net that is specifically designed for displaying content larger than the control itself?
I know it's possible to code your own using a panel and two scrollbars, but is there an already existing method for this?
Thanks for your help
All control containers, such as Panel, FlowLayoutPanel etc. have AutoScroll property, which does what you want.
I have two picture box to display some pictures at regular intervals in .net compact framework.
I need to show toolbar with play,pause buttons when i touch the respective picture boxes and hide when i touch the other one..
So what, exactly, is the question? You could use a third picturebox to hold your "toolbar" and display/hide it as necessary, or make the toolbar a user control so you can easily add in separate buttons.