Advanced Forum Search Results
-
Well, if you mean streaming data locally then of course.
-
Ok, well, I know that the source code for controls are available, but is Silverlight Source code overall available, or just the controls, I am curious about this.
Hmm, I am also surprised it is open source, since Microsoft usually never open's it's application and component sources.
-
Rumors say that the latest Firefox doesn't support Silverlight, so that may be the issue.
-
Using "this.Content = new Page2()" would completely destroy the current content, and load the new page.
-
[quote user="SteveWong"] IFrame?? or maybe you can use a stackpanel so that you make your xaml into a usercontrol and display that in the stackpanel
[/quote]
Nah, he means he wants something like a page switcher, not frames.
-
Uhm, ok, that was random.
Anywhom, just add horizontal and vertical alignment.
<Button HorizantalAlignment = "Center" VerticalAlignment = "Center"/>
Hope that helps.
That should work just fine for any control that can be aligned.
-
yes, very possible, Google has a bunch of Button template tutorials using Expression blend.
-
Create a new XAML class, named Page2 or something, the in the button statements, add this
this.Content = new Page2();
Your new content would be Page2
-
Well, if it doesn't work in any of your browsers, you can try re-installing Silverlight or you may need to contact NBC(Maybe it is the site that is having the issues?).
-
Is it even possible to post tuts?
I also had this very SAME question the day I joined.