Advanced Forum Search Results
-
Hi i have this schema in my XML.
i want to read img and all the li's from this xml using LINQ.But not able to access those nodes directly.
<div id="slide3" class="child">
<div class="photolistset">
<div ...
-
Hi
I have a image control in my silverlight application. I want to redirect user to a URL if user clicks on a particular area in image.
I am reading image source and area cordinates from an XML.
XML:
<div id="slide1" class="mymsn-child mymsn-first cf">
<span ...
-
hi i am facing problem in reading from this xml.
void DisplayImages(string xmlContent)
{
XDocument xmldivisions = XDocument.Parse(xmlContent); var divs = from div in xmldivisions.Descendants("div")
select new Division
{
id = (int)div.Attribute("id"),image = ...
-
I tried that too but it still not working...... :(
i actully want the image source and want to display that iamge in one rectangle....how can i do it....
-
hi i am facing the same problem. XDocument xmldivisions = XDocument.Parse(xmlContent);
var divs = from div in xmldivisions.Descendants("div1")
select new Division
{id = (int)div.Attribute("id"),image = (string)div.Element("span").Element("img").Attribute("src").Value
};
My XML file ...
-
Yep got it thanxxx
-
Hi Jim
I am not using canvas rather i have used Grid. So i m not sure wheather this solution will work or not?
The scenario is like....I have three rectangle and i am setting target of my animation at runtime.
So first i am finding my rectangle on which that animation has to be applied.So for that i have to stop the animation and reset the ...
-
Hi
I have this rectangle on which an animation is appplied. Now i want to get the current translate transform.X and Y property of this rectangle. Then i want to stop animation and reset the possition of this rectangle to last possition.Any Idea?
<Rectangle HorizontalAlignment="Stretch" ...