Advanced Forum Search Results
-
Controller support could make a big difference for games like the one in the picture below. It could also spare many keyboards from being broken.
-
I get the feeling that this might be asking for too much, but is there, or might there one day be, a way to get input from a gamepad type of controller using silverlight 3 or later?
-
I haven't gotten around to trying these controls out yet but the demo's are impressive GOA WinForms
-
Are you able to edit the <title></title> tag of the html page that the silverlight application is on?
-
[quote user="rashadrivera2"]It does not fail until I call the Begin() method.[/quote]
Please post the code that precedes the call to the Begin method.
-
Here is something similar that was created using silverlight
http://www.microsoft.com/windowsserver2008/en/us/serverunleashed/default.html
-
What did you do to fix it?
-
[quote user="Silverlight20"]Could anyone help please!!!![/quote]
Brad Abrams covers this on his blog
Accessing the ASP.NET Authentication, Profile and Role Service in Silverlight
-
[quote user="Jhorra"]Well, my ultimate goal is actually to be able to loop through a control I'm populating and determine which checkboxes are checked.[/quote]
Maybe you could do something like this...
Page.xaml.cs:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using ...
-
[quote user="Jhorra"]Is it also possible to loop through a section like this using linq and load an array or something of that nature?[/quote]
I don't completely understand what you are trying to do, do you want to create an array from the message variable?
If so you could use the ToArray extension method
var messageArray = ...