且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何检查是否安装.NET Framework [C#/ WPF]

更新时间:2023-02-11 13:14:48

a)你将不得不使用非.NET语言(C ++,VB6等引导程序)(其他海报是正确的 - 如果未安装框架中,.NET程序将无法运行)。一个例子是在这里:

a) You would have to bootstrap the program with a non .NET language (C++, VB6, etc) instead of Form_Load (other posters are correct - if the framework isn't installed, the .NET program won't run). An example is here:

HTTP://www.$c$cproject.com/KB/ MCPP / DotNetTester.aspx

b)你不能把一个超链接在一个MessageBox,所以你就必须创建自己的弹出式对话框(表格)。 编辑:这表格/对话框将必须在引导程序

b) You can't put a hyperlink in a MessageBox, so you would have to create your own popup dialog (a form). That form / dialog would have to be in the bootstrap program.