Advanced Forum Search Results
-
you can read your physical XAML file into a string through Webclient and then Load the XAML as the Children of your canvas.
another way may be ask for the XAML content through a WCF service. and then get the XAML back as string.
-
yes i expected it to be insided your page.
-
you should try something like this
treeInmate.ItemContainerStyle = this.Resources["ItemTreeViewStyle"] as Style;
-
when i click on the hyperlink inside that treeview i need to open a new window with the url in the NavigateURI property of the hyperlink button.
the problem is when i click on the link the selected index changed of the treeview is fired rather than the click of the hyperlink
-
my hyperlink button is inside the hierarchiecal template. the rest is similar to your xaml sample
-
Hi,
I have a treeview in which one of the item has to show hyperlink, the dependency on hyperlink is due to its navigateurl property which helps open new window without being blocked by popupblockers.
My problem is when this hyperlink is in the TreeView and i click on the hyperlink the treeviews selectedItemChangedEvent gets fired, I need to ...
-
Hi Allen,
In my case i need to give user the option to save the Pdf file which I am pointing to. I dont need any manupulations of the data. as per the link u provided i can download the pdf in silverlight but how can i give the user option to save the pdf file.
-
THis is still not solving my problem of hiding and showing the silverlight control in firefox.
-
it works fine when i replace the <asp:SilverlightControl /> from above with
<object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="100%" height="100%">
<param name="source" ...
-
I have my silverlight application inside a div object and i need to disable and enable its view based on the buttons click, I am giving a sample code of my aspx page which is workign fine in IE7 but in Firefox, when i click hide the silverlight control hide alrite, but when i click the show button the other text content of div are visisble but the ...