Advanced Forum Search Results
-
Hi all,
I need to get the fill color of a series of paths, I've got the following code but I think there might be a better way to replace it using a for statement.
Brush[] leafColor = new Brush[27];
leafColor[2] = pth_hoja2.Fill;
leafColor[3] = pth_hoja3.Fill;
leafColor[4] = pth_hoja4.Fill;
leafColor[5] = ...
-
Hi all, I've got a simple animation made in blend with three keyframes, and through a previous and a next buttons I would like to go to those keyframes, like gotoandplay() would do in Flash. I already named the keyframes but nothing works. Then I though of making two storyboards, the first one that goes from keyframe 1 to keyframe 2, and ...
-
Hi all, I need to change the content of a textblock named: txt_Link1 inside a custom template dynamically, my xaml ...
-
Hi,
Thanks a lot, it worked, but I definitely would like to keep using XMLReader, isn't there any other way it can be solved using it?
-
Hi all, I think this is a pretty easy one.
Let's say I have this XML named "datafile.xml":
<bookstore>
<book genre="autobiography" publicationdate="1981-03-22" ISBN="1-861003-11-0">
![CDATA[The Autobiography of Benjamin Franklin]]>
</book>
<book ...
-
Hi!
Thanks for your answer.
I followed your instructions and got a new error message at line 26 from my previous post:
"Root element is missing."
It looks like it is not finding the XML, and I won't add it into the clientbin folder, because I want that xml not to be embedded into the project but to use an absolute path file ...
-
Hi!
Thanks for your answer, I implemented the code as below, but I got two random message errors:
1 public Page()
2 {
3 // Required to initialize variables
4 InitializeComponent();
5 GetXmlData();
6 }
7
8 private void GetXmlData()
9 {
10 ...
-
Hi HarshBardhan,
Thank you a lot for your quick answer, but I'm afraid it is not clear at all, could you please provide some usage example?
Thanks!
-
Hi all, I'm working on parsing a XML file in a Silverlight Application 2.0 using C#, and everything was ok taking the examples from MSDN. But I found out that if want to update the XML file I have to compile the project and it doesn't work for me since it wouldn't be dinamical at all. I need the silverlight application to show the ...