Advanced Forum Search Results
-
Well, since this is WISH list... Not all these are strictly Silverlight features, but I wish for them non the less.
1) I want the Silverlight team to get with the XNA team and inject Silvelight into XNA in all ways that make sesnse. It'd be nice to be able to use Xaml and other Silverlight constructs to build XNA screens and simple games. ...
-
That fixed it. Thanks!
-
That is what I originally tried, but the compiler balks on it so I switched to '%26'
What is shown above worked in the pre-Release version of SL3.
Anyone have any other ideas? Anyone else able to use more than 1 query parameter?
-
Hey everyone.
I've got the following UriMapping: <navcore:UriMapping Uri="Game/{levelGroupName}/{levelName}" MappedUri="/Pages/GamePage.xaml?levelGroupName={levelGroupName}%26levelName={levelName}" />
In my code, I call:
NavigationService.Navigate(new ...
-
This issue and it's solution can also be found in the following post.
http://silverlight.net/forums/t/108580.aspx
Thanks for the link to the doc, though it'll be helpful for any other issues I find.
-Jeff
-
Excellent. I'll try that when I get home from work!
Thanks.
-
I'm seeing this as well. Seems to occur when I try to use a "mapped" URI rather than the full path.
If I use the full path, I can get past this exception. Would prefer to use the mapped (friendly) text though.
I made a post about this before I realized your exception was the same as mine.
-
I'm having an isssue with the URIMapper when moving from the SL3 Beta to SL3 Release.
This no longer works (note the "Source" parameter):
<UserControl x:Class="FarseerGames.Krashlander.Game.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
...
-
The problem was the following:
public EventHandler PositionChanged;
should have been
public event EventHandler PositionChanged
and the event has to be subscribed to declaratively in the XAML:
<FarseerGames_GameEngine_Behaviors:DragBehavior x:Name="DragBehavior" PositionChanged="DragBehavior_PositionChanged"/>
-
Yes, I'm trying to subsribe to the event from within the control that actaully contains the drag behavior it it's XAML.
I don't fully have my head around behaviors, so I'm could be making some simple mistakes are maybe I'm trying to do something I shouldn't be.