SDA-3451 Windows - Accessibility - Bringing welcome screen foreground (#1293)

This commit is contained in:
Salah Benmoussati 2021-11-15 14:15:15 +01:00 committed by GitHub
parent 68cdbca3c7
commit 46b7b69c8b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,7 @@
using WixSharp;
using System;
using System.Drawing;
using System.Runtime.InteropServices;
namespace Symphony
{
@ -20,13 +22,16 @@ namespace Symphony
InitializeComponent();
}
[DllImport("user32.dll")]
static extern bool SetForegroundWindow(IntPtr hWnd);
void dialog_Load(object sender, System.EventArgs e)
{
SetForegroundWindow(this.Handle);
// Populate the dynamic UI elements that can't be set at compile time (background image and
// the label containing user name)
this.backgroundPanel.BackgroundImage = Runtime.Session.GetResourceBitmap("WixUI_Bmp_Dialog");
this.radioButtonCurrentUser.Text = "Only for me (" + getUserName() + ")";
if( Runtime.Session["ALLUSERS"] != "" )
if (Runtime.Session["ALLUSERS"] != "")
{
this.radioButtonAllUsers.Checked = true;
}
@ -64,7 +69,7 @@ namespace Symphony
}
// Set INSTALLDIR
if( Runtime.Session["APPDIR"] != "" )
if (Runtime.Session["APPDIR"] != "")
{
// If APPDIR param was specified, just use that as is
Runtime.Session["INSTALLDIR"] = Runtime.Session["APPDIR"];
@ -92,8 +97,8 @@ namespace Symphony
void cancel_Click(object sender, System.EventArgs e)
{
// TODO: Localization
if( System.Windows.Forms.MessageBox.Show("Are you sure you want to cancel Symphony installation?",
"Symphony Setup", System.Windows.Forms.MessageBoxButtons.YesNo) == System.Windows.Forms.DialogResult.Yes )
if (System.Windows.Forms.MessageBox.Show("Are you sure you want to cancel Symphony installation?",
"Symphony Setup", System.Windows.Forms.MessageBoxButtons.YesNo) == System.Windows.Forms.DialogResult.Yes)
{
Shell.Cancel();
}