Advanced Forum Search Results
-
[quote user="pbromberg"]
Working sample:
<HTML>
<HEAD>
<script type="text/javascript" src="silverlight.js" > </script>
<script type="text/javascript" >
function checkSl(version)
{
alert( Silverlight.isInstalled(version) ...
-
Yeah, HtmlPage.Window.Navigate() works fine, but it's not a user triggered action like the hyperlink button click, so IE8 will not open that window if your browser security isn't allowing it, unlike with HyperlinkButton
-
Hi,
I'm using HyperlinkButtons to navigate to various HttpHandlers and up to now this was no problem since the uri was known at designtime. But now, the uri has to be returned by a wcf webservice. So what I'm doing is calling the webservice from the Hyperlinks Click eventhandler and setting the NavigateUri property from the return result. ...
-
I've tested it several times and it worked as it should. Maybe your implementation differs from my example?
-
Try my solution, it will work...
-
you could use XmlDocument.LoadXaml() for loading the markup dynamically
-
Yes, since they are not the same properties. You change A and expect B to reflect the value of A. But A and B have no relation
-
Following code works for me...
<UserControl x:Class="SilverlightApplication1.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" ...
-
wire up the SelectionChanged event and check for the IsDropDownOpen property of your Autocompletebox. Something like:
void OnSelectionChanged(...)
{
AutoCompleteBox box = sender as AutoCompleteBox;
if(box.IsDropDownOpen)
{
...
-
Awesome! Thank you so much!