Advanced Forum Search Results
-
I think your simplest answer maybe to use the Sample data feature in Blend 3 - take a look here for details: http://www.microsoft.com/belux/MSDN/nl/chopsticks/default.aspx?id=1373
-
Hi,
Have you had a look at my duplex example here: http://silverlightforbusiness.net/2009/06/23/pushing-data-from-the-server-to-silverlight-3-using-a-duplex-wcf-service/ - although a simple implementation it should get you started. If you have specific questions about implementation of your example following a review of that I would be ...
-
Are the properties on your user control Dependency properties? Use the propdp snippet to create them if not
-
So the actual RIA services are sitting on another server and the request needs to be forwarded to them by the server the Silverlight app is hosted on? Is that correct?
If so have you tried this and recieved and error or are you just investigating the scenario? Let me know and I will see if I can replicate it and come up with a ...
-
Hi Ian,
Have you had a look at the .net Ria Class Services Library project template - should be installed with the latest ria services - would this help?
Cheers
Ian
-
You can create gadgets in Silverlight, though I have not actually tried it. I know there are some issues with x64 gadgets, since there is not a x64 version of Silverlight, so the sidebar you would need to run would be the 32 bit version; and I have a feeling that you can only run silverlight 1 apps and not managed code - but that really ...
-
Yes you can make the listpanel scroll horizontally by changing the Panel template as follows:
<ListBox VerticalAlignment="Top"
ItemsPanel="{StaticResource ItemsPanelTemplate1}">
<ListBoxItem Content="Test"/>
<ListBoxItem ...
-
Is this what you are looking for?
public class DataCollection<T> : IEnumerable<T>
{
List<T> _list = new List<T>();
#region IEnumerable Members
public IEnumerator<T> GetEnumerator()
{
throw new NotImplementedException();
}
...
-
Hi,
The code I posted earlier (and copied below) should work fine - what do you have stored in your window resources - can you post them here? foreach (DictionaryEntry de in this.Resources)
{
if (de.Value.GetType() == typeof(Storyboard))
{
...
-
Hmm strange.
The following compiles correctly for me in a Silverlight project
public class DataCollection<T> : IEnumerable
{
List<T> _list = new List<T>();
#region IEnumerable Members
public IEnumerator GetEnumerator()
{
throw new ...