English 中文(简体)
• 如何将文字箱价值分配到WIX Variable
原标题:How to assign a textbox value to a WIX Variable

我在WIX Dialog盒中创建了一个文本箱,现在,我想得到在文本箱中输入的价值应当分配给一个星号。 请让我知道我如何能够这样做。

问题回答

你们是否希望将ed箱中的价值分配给财产?

<Control Id="NameEdit" Type="Edit"
         X="45" Y="85" Width="220" Height="18"
         Property="USERNAME" Text="{80}" />

举例来说,将按财产价值(<>USERNAME)对it盒进行初步化,输入文本将储存在上。 USERNAME property which You can used subsequently.

我从WiX Tutorial page


WiX变量只在WiX pre processor上使用,在C/C.R.中,这些变量仅像define;因此在MSI包中不存在。





相关问题
3rd party Wix libraries

I am just getting started with Wix. I see there there a several libraries included with the default Wix install. I also see that users can create their own libraries(wixlibs). Are there any 3rd ...

Psake, Powershell & Wix

I have the below function as a part of my psake build. When the build is executing Candle.exe throws this error: candle.exe : warning CNDL1098: ext .BuildPackagesWixWebinWixIIsExtension.dll ...

wix custom dialog for config edit

hi i m trying make a setup msi for my application with wix v3 I have a problem about this task; I need a user input that will be stored in my application s config file (for example i need a dialog for ...

Closing an application using WiX

In creating my WiX installer I have run into an issue when trying to close an application before installing the upgrade. Below is an example of how I am attempting to do this. <util:...

Conditional uninstall of previous version in Wix

I m doing an installer for an software used for debugging embedded ARM cores (OpenOCD) and this installer automatically removes the previous versions - that s simple. However, sometimes that would be ...

热门标签