Advanced Forum Search Results
-
Hi,
Just want to know what is the difference between clientaccesspolicy.xml and crossdomain.xml files in Silverlight Application. Are both files needed in the root of the domain where the service is hosted to configure the service to allow cross-domain-access.
regards,
Parimal
-
Thanks a lot for the help.
Can i also get the animation code in the refered Silverlight Control where the path moves from left to right.
Thanks in Advance,
Parimal
-
Hi,
There is a silverlight control in the following page at the right center which says "Stay Informed Subscribe to RSS":
http://silverlight.net/forums
I want to develop a page similiar to this animation. Any pointer to such source code or help is appreciated.
regards,
Parimal
-
Hi,
Any pointer for Silverlight Animation tutorials and examples?
regards,
Parimal
-
Hi,
Appreciate help of any example/poiner on the Grid [Master/Details view] in Beta 2.
regards,
Parimal
-
Hi,
I read my Feed Data using HttpWebrequest object. The Feed services resides on different domain. I have a valid CrossDomain policy file. I am able to read the data correctly from Feed services and get data in SL App.
Problem:
When i try to bind this data to my Data Grid, i get the following error "Invalid cross-thread access" error ...
-
In My case i am reading data from Feed using Httpwebrequest. I get data without any issues. Now when i try to bind this data to Grid or do some other action like hide a control etc, i get an error "Invalid cross-thread access". SO to avoid this, once i get data i start a NonUI thread and perform my actions on the controls and bind data ...
-
Hi,
Is there formatting approach or way in Textblock control in Beta 2 where i can format the text [Bold, Italic etc] and also have hyperlinks for the text in the textblock control?
regards,
Parimal
-
I resolved my issue in following steps:
1. Comment the line-->//request.ContentType = "text/XML";
2. Start a Despacther thread once you get data from Source:System.Threading.ThreadStart start = new System.Threading.ThreadStart(NonUIWork);System.Threading.Thread thread = new System.Threading.Thread(start);
thread.Start();void ...
-
Thanks for the response once again.I wish to call Page.xaml from App.xaml.cs file. But before that i wish to read all the xml files in my app using web client. Where [method] should i call the Page class in the App.xaml.cs file so that it gets called after i finish my XML reading. If i put it in DoSomething method, it gets called first that ...