blob: b25b8a9e9ac8050576d7638ea8b6de48e4ee9323 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
namespace WixToolset.Dtf.Samples.EmbeddedUI
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using WixToolset.Dtf.WindowsInstaller;
/// <summary>
/// Interaction logic for SetupWizard.xaml
/// </summary>
public partial class SetupWizard : Window
{
private ManualResetEvent installStartEvent;
private InstallProgressCounter progressCounter;
private bool canceled;
public SetupWizard(ManualResetEvent installStartEvent)
{
this.installStartEvent = installStartEvent;
this.progressCounter = new InstallProgressCounter(0.5);
}
public MessageResult ProcessMessage(InstallMessage messageType, Record messageRecord,
MessageButtons buttons, MessageIcon icon, MessageDefaultButton defaultButton)
{
try
{
this.progressCounter.ProcessMessage(messageType, messageRecord);
this.progressBar.Value = this.progressBar.Minimum +
this.progressCounter.Progress * (this.progressBar.Maximum - this.progressBar.Minimum);
this.progressLabel.Content = "" + (int) Math.Round(100 * this.progressCounter.Progress) + "%";
switch (messageType)
{
case InstallMessage.Error:
case InstallMessage.Warning:
case InstallMessage.Info:
string message = String.Format("{0}: {1}", messageType, messageRecord);
this.LogMessage(message);
break;
}
if (this.canceled)
{
this.canceled = false;
return MessageResult.Cancel;
}
}
catch (Exception ex)
{
this.LogMessage(ex.ToString());
this.LogMessage(ex.StackTrace);
}
return MessageResult.OK;
}
private void LogMessage(string message)
{
this.messagesTextBox.Text += Environment.NewLine + message;
this.messagesTextBox.ScrollToEnd();
}
internal void EnableExit()
{
this.progressBar.Visibility = Visibility.Hidden;
this.progressLabel.Visibility = Visibility.Hidden;
this.cancelButton.Visibility = Visibility.Hidden;
this.exitButton.Visibility = Visibility.Visible;
}
private void installButton_Click(object sender, RoutedEventArgs e)
{
this.installButton.Visibility = Visibility.Hidden;
this.progressBar.Visibility = Visibility.Visible;
this.progressLabel.Visibility = Visibility.Visible;
this.installStartEvent.Set();
}
private void exitButton_Click(object sender, RoutedEventArgs e)
{
this.Close();
}
private void cancelButton_Click(object sender, RoutedEventArgs e)
{
if (this.installButton.Visibility == Visibility.Visible)
{
this.Close();
}
else
{
this.canceled = true;
this.cancelButton.IsEnabled = false;
}
}
}
}
|