Advanced Forum Search Results
-
I was thinking to move to 2010 as well...
-
Hey Colin, on this topic... Have you tried a migration yet of VS2008 to WCF RIA?
-
You shouldn't need to save the event. Just reassign it on load.
I'm doing something like this with the xamla project: http://xamla.codeplex.com
Serializing xaml elements, saving them, and then reloading.
-
Use the type system, which a much easier way to do this. The trick is to find which base class is holding the event. In the case of MouseLeftButtonDown, the event is held in UIElement, which other elements derive from. So all you have to do is apply this test:
var hasEvent = myElement is UIElement; //returns true if the ...
-
If you study the example in the link below, you'll see that it does exactly what you are wanting to do. Using triggers in xaml, you can play Storyboard animations (or stop them) based on any mouse event. All you have to do is create the storyboard for your geometry, then associate the triggers as I've shown. The nice ...
-
We're implementing a standard localization process: strings in a .resx file and then binding to them in xaml/code-behind.
However, ran into a problem with attribute strings and looking for advice. See this:
private string _newGroupName;
[Required(ErrorMessage = "Group Name Is Required.")] //<-- How to localize this ...
-
I ended up writing my own client-side dynamic polling system, which varies the polling interval based on how busy the chat channel is.
Since the time I wrote the original post, I'm still not convinced that the polling-duplex library is mature enough for production use. I'm also not convinced that having server-side push provides ...
-
So it's a single record of configuration options for all users, or one record of configuration options for each user?
-
Drag/drop between SL and desktop isn't possible.
For simple drag/drop operations, I would highly recommend looking into Behaviors. I just recently wrote a blog about this, with a live working example to play with: http://www.myosity.com/blog/post/Silverlight-Behaviors-Example.aspx. And as Fury mentions above, there is ...
-
Well one thing I can see that might be a problem is that you are not handling your RIAS call in an asyncronous fashion.
So you are assigning your ItemsSource before the call is returned from the service. Use the "Completed" event of the LoadOperation (returned by ctx.Load) to ensure that your assignment is performed after ...