Como: Detect Whether the WPF Plug-In for Firefox Is Installed
O Windows Presentation Foundation (WPF) plug-in para o Firefox permite XAML browser applications (XBAPs) e os arquivos XAML flexível para ser executado no navegador Mozilla Firefox. Este tópico fornece um script escrito em HTML e JavaScript que os administradores podem usar para determinar se o plug-in para o Firefox do WPF está instalado.
Observação
Para obter mais informações sobre a instalação, implantação e detectando a .NET Framework, consulte Instalação do .NET Framework.
Exemplo
Quando o .NET Framework 3.5 é instalado, o computador cliente é configurado com um plug-in do WPF para Firefox. O script de exemplo a seguir verifica o plug-in do WPF para Firefox e exibe uma mensagem de status apropriado.
<HTML>
<HEAD>
<TITLE>Test for the WPF plug-in for Firefox</TITLE>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8" />
<SCRIPT type="text/javascript">
<!--
function OnLoad()
{
// Check for the WPF plug-in for Firefox and report
var msg = "The WPF plug-in for Firefox is ";
var wpfPlugin = navigator.plugins["Windows Presentation Foundation"];
if( wpfPlugin != null ) {
document.writeln(msg + " installed.");
}
else {
document.writeln(msg + " not installed. Please install or reinstall the .NET Framework 3.5.");
}
}
-->
</SCRIPT>
</HEAD>
<BODY onload="OnLoad()" />
</HTML>
Se a seleção para o plug-in do WPF para o Firefox for bem-sucedida, a seguinte mensagem de status é exibida:
The WPF plug-in for Firefox is installed.
Caso contrário, a seguinte mensagem de status é exibida:
The WPF plug-in for Firefox is not installed. Please install or reinstall the .NET Framework 3.5.
Consulte também
Tarefas
Como: Detect Whether the .NET Framework 3.5 Is Installed