2011-01-06 14 views

Respuesta

1

Pregunta realmente interesante!
He intentado hacer algo así y finalmente encontré la solución en bruto pero bonita:

Antes que nada, debe establecer una página específica usando Propiedades -> Depurar -> Página específica. Mi ejemplo página:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml" > 

<head> 
    <title>SilverlightApplication1</title> 
    <script type="text/javascript"> 
    </script> 
</head> 

<body> 
    <div id="fillWithData"> 
    </div> 
    <form id="form1" runat="server" style="height:100%"> 
    <div id="silverlightControlHost" style="height: 100%; text-align:center"> 
     <object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="30%" height="30%"> 
      <param name="source" value="file:///C:/Users/Igor/Documents/Visual Studio 2010/Projects/MobileTest/SilverlightApplication1/Bin/Debug/SilverlightApplication1.xap"/> 
      <param name="onError" value="onSilverlightError" /> 
      <param name="background" value="white" /> 
      <param name="minRuntimeVersion" value="4.0.50826.0" /> 
      <param name="autoUpgrade" value="true" /> 
      <a href="http://go.microsoft.com/fwlink/?LinkID=149156&v=4.0.50826.0" style="text-decoration:none"> 
       <img src="http://go.microsoft.com/fwlink/?LinkId=161376" alt="Get Microsoft Silverlight" style="border-style:none"/> 
      </a> 
     </object><iframe id="_sl_historyFrame" style="visibility:hidden;height:0px;width:0px;border:0px"></iframe></div> 
    </form> 
</body> 
</html> 

NOTA: La escritura en blanco y elementos div es importante! cargaremos js/html dinámico en ellos.

Mis xaml.cs silverlight:

public partial class MainPage : UserControl 
{ 
    public MainPage() 
    { 
     InitializeComponent(); 
     Loaded += new RoutedEventHandler(MainPage_Loaded); 
    } 

    void MainPage_Loaded(object sender, RoutedEventArgs e) 
    { 
     HtmlDocument hostPage = HtmlPage.Document; 

     ScriptObject obj = hostPage.GetElementsByTagName("script")[0]; 
     obj.SetProperty("innerHTML", "function alertonclick() { alert('Amazing! I am dynamic javascript!'); }");  

     HtmlElement ipAddressHtml = hostPage.GetElementById("fillWithData"); 
     ipAddressHtml.SetProperty("innerHTML", @"<input id=""Button1"" type=""button"" value=""button"" onclick=""alertonclick();"" />"); 
    } 
} 

NOTA MUY IMPORTANTE: He probado el código y funciona solamente bajo Opera. Si necesita probar algo utilizando algún otro navegador, debe introducir javascript directamente en el elemento.

Ejemplo:

public partial class MainPage : UserControl 
{ 
    public MainPage() 
    { 
     InitializeComponent(); 
     Loaded += new RoutedEventHandler(MainPage_Loaded); 
    } 

    void MainPage_Loaded(object sender, RoutedEventArgs e) 
    { 
     HtmlDocument hostPage = HtmlPage.Document; 

     HtmlElement ipAddressHtml = hostPage.GetElementById("fillWithData"); 
     ipAddressHtml.SetProperty("innerHTML", @"<input id=""Button1"" type=""button"" value=""button"" onclick=""alert('Amazing! I am dynamic javascript!');"" />"); 
    } 
} 

Este código funciona bien en IE/FF/Chrome/Opera (por supuesto :)).
En cuanto a mí, me gusta el primer ejemplo con ambos js dinámicos y html. Y estoy bastante seguro de que es posible arreglarlo y hacer que otro navegador lo acepte, no solo Opera.
Espero que mis ejemplos te ayuden =)

Cuestiones relacionadas