我昨天查看了我的一些工作安装程序代码报告的错误,发现右键单击不会打开任何安装程序的上下文菜单.
显示密码框的上下文菜单,所以粘贴我认为这是我在浏览文档时遗漏的设置,但我没有在谷歌上看到任何东西.
代码很简单,像这样:
(工作案例:密码箱)
<Control Id="Label2" Type="Text" X="15" Y="123" Width="85" Height="18" Transparent="yes" Text="Password:" /> <Control Id="Edit2" Type="Text" Password="yes" X="100" Y="120" Width="235" Height="18" Property="PASSWORD" Text="[PASSWORD]" ToolTip="The password for the activation service to register the application." />
(失败案例:编辑或文本框)
<Control Id="Label1" Type="Text" X="15" Y="103" Width="80" Height="18" Transparent="yes" Text="Username:" /> <Control Id="Edit1" Type="Edit" X="100" Y="100" Width="235" Height="18" Property="ACTIVATIONUSERNAME" Text="[ACTIVATIONUSERNAME]" ToolTip="The username for the activation service to register the application." />
干杯,
Ĵ
P.S我检查了WIX 3.5,似乎也出现了同样的问题.