summaryrefslogtreecommitdiff
path: root/windows/ovs-windows-installer/Dialogs/MyEndDialog.wxs
diff options
context:
space:
mode:
Diffstat (limited to 'windows/ovs-windows-installer/Dialogs/MyEndDialog.wxs')
-rw-r--r--windows/ovs-windows-installer/Dialogs/MyEndDialog.wxs44
1 files changed, 44 insertions, 0 deletions
diff --git a/windows/ovs-windows-installer/Dialogs/MyEndDialog.wxs b/windows/ovs-windows-installer/Dialogs/MyEndDialog.wxs
new file mode 100644
index 000000000..064ccc5b0
--- /dev/null
+++ b/windows/ovs-windows-installer/Dialogs/MyEndDialog.wxs
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ <copyright company="Cloudbase Solutions Srl">
+ Copyright 2015 Cloudbase Solutions Srl
+
+ Licensed under the Apache License, Version 2.0 (the "License"); you may
+ not use this file except in compliance with the License.You may obtain
+ a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.See the
+ License for the specific language governing permissions and limitations
+ under the License.
+ </copyright>
+-->
+<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
+ <Fragment>
+ <UI>
+ <Dialog Id="MyEndDialog" Width="370" Height="270" Title="!(loc.ExitDialog_Title)">
+ <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.WixUICancel)" />
+ <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
+ <Control Id="Description" Type="Text" X="135" Y="70" Width="212" Height="40" Transparent="yes" NoPrefix="yes" Text="!(loc.ExitDialogDescription)" />
+ <Control Id="OptionalText" Type="Text" X="135" Y="110" Width="212" Height="80" Transparent="yes" NoPrefix="yes" Hidden="yes" Text="[WIXUI_EXITDIALOGOPTIONALTEXT]" />
+ <Control Id="OptionalCheckBox" Type="CheckBox" X="135" Y="190" Width="212" Height="40" Hidden="yes" Property="WIXUI_EXITDIALOGOPTIONALCHECKBOX" CheckBoxValue="1" Text="[WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT]" />
+ <Control Id="Title" Type="Text" X="135" Y="20" Width="212" Height="60" Transparent="yes" NoPrefix="yes" Text="!(loc.ExitDialogTitle)" />
+ <Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" TabSkip="no" Text="!(loc.ExitDialogBitmap)" />
+ <Control Id="Finish" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.WixUIFinish)" />
+ <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.WixUIBack)" />
+ </Dialog>
+
+ <AdminUISequence>
+ <Show Dialog="MyEndDialog" OnExit="success" Overridable="yes" />
+ </AdminUISequence>
+
+ <InstallUISequence>
+ <Show Dialog="MyEndDialog" OnExit="success" Overridable="yes" />
+ </InstallUISequence>
+
+ </UI>
+ </Fragment>
+</Wix>