hola amigos como puedo pasar el siguiente codigo de silverlight a wpf
me marca error en el BROWSER y en el HtmlPage
me dicee que El tipo o el nombre del espacio de nombres 'Browser' no existe en el espacio de nombres 'System.Windows' (¿falta una referencia de ensamblado?)
Uri uri = System.Windows.Browser.HtmlPage.Document.DocumentUri;
IDictionary<string, string> queryString = System.Windows.HtmlPage.Document.QueryString;
if (uri.ToString().Contains("fromusername"))
{
// set all the app wide variables
App app = (App)Application.Current;
app.UserID = Convert.ToInt32(queryString["fromuserid"]);
app.UserName = queryString["fromusername"];
app.ToUserID = Convert.ToInt32(queryString["touserid"]);
app.ToUserName = queryString["tousername"];
app.IsInvited = Convert.ToBoolean(queryString["isinvited"]);
try
{
app.TimeUserSentInviation = Convert.ToDateTime(queryString["timeusersentinvitation"]);
}
catch { }
return true;
}
else
{
return false;
}
espero q me puedan ayudar