Browse Source
Renamed WixDialog to EmptyWixDialog and WixGraphicalDialog to WixDialog. git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/3.0@3432 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61shortcuts
22 changed files with 44 additions and 44 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,24 @@
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0"?> |
||||
<Template author="Matt Ward" version="1.0"> |
||||
<Config name = "${res:Templates.File.Wix.EmptyWixDialog.Name}" |
||||
icon = "Icons.32x32.XMLFileIcon" |
||||
category = "${res:Templates.File.Categories.Setup}" |
||||
defaultname = "Dialog${Number}.wxs" |
||||
language = "XML"/> |
||||
|
||||
<Description>${res:Templates.File.Wix.EmptyWixDialog.Description}</Description> |
||||
|
||||
<Files> |
||||
<File name="${FullName}" language="XML"><![CDATA[<?xml version="1.0"?> |
||||
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> |
||||
<Fragment> |
||||
<UI> |
||||
<Dialog Id="${ClassName}" Width="370" Height="270" Title="${FileNameWithoutExtension}"> |
||||
</Dialog> |
||||
</UI> |
||||
</Fragment> |
||||
</Wix>]]> |
||||
</File> |
||||
</Files> |
||||
<AdditionalOptions/> |
||||
</Template> |
@ -1,41 +0,0 @@
@@ -1,41 +0,0 @@
|
||||
<?xml version="1.0"?> |
||||
<Template author="Justin Dearing" version="1.0"> |
||||
<Config name = "${res:Templates.File.Wix.WixGraphicalDialog.Name}" |
||||
icon = "Icons.32x32.XMLFileIcon" |
||||
category = "${res:Templates.File.Categories.Setup}" |
||||
defaultname = "Dialog${Number}.wxs" |
||||
language = "XML"/> |
||||
|
||||
<Description>${res:Templates.File.Wix.WixGraphicalDialog.Description}</Description> |
||||
|
||||
<Files> |
||||
<File name="${FullName}" language="XML"><![CDATA[<?xml version="1.0"?> |
||||
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> |
||||
<Fragment> |
||||
<UI> |
||||
<Dialog Id="${ClassName}" Width="370" Height="270" Title="${FileNameWithoutExtension}"> |
||||
<Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="[Button_Next]"> |
||||
<!-- |
||||
<Publish Event="NewDialog" Value="ViewLicenseAgreement">1</Publish> |
||||
--> |
||||
</Control> |
||||
<Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="[Button_Cancel]"> |
||||
<Publish Event="SpawnDialog" Value="CancelDialog">1</Publish> |
||||
</Control> |
||||
<Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" FixedSize="yes" TabSkip="no" Text="dialog.bmp" /> |
||||
<Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Disabled="yes" Text="[Button_Back]" /> |
||||
<Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" /> |
||||
<Control Id="Description" Type="Text" X="135" Y="70" Width="220" Height="90" Transparent="yes" NoPrefix="yes"> |
||||
<Text>Your Text Goes Here</Text> |
||||
</Control> |
||||
<Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes"> |
||||
<Text>${FileNameWithoutExtension}</Text> |
||||
</Control> |
||||
</Dialog> |
||||
</UI> |
||||
</Fragment> |
||||
</Wix>]]> |
||||
</File> |
||||
</Files> |
||||
<AdditionalOptions/> |
||||
</Template> |
Binary file not shown.
Loading…
Reference in new issue