119 lines
4.3 KiB
C#
119 lines
4.3 KiB
C#
using System;
|
|
//using System.DirectoryServices.AccountManagement;
|
|
using System.Drawing;
|
|
using System.Windows.Forms;
|
|
|
|
namespace BismNormalizer.TabularCompare.UI
|
|
{
|
|
public partial class BlobCredentials : Form
|
|
{
|
|
private string _authenticationKind;
|
|
private string _connectionName;
|
|
private string _accountKey;
|
|
private string _privacyLevel;
|
|
private float _dpiScaleFactor;
|
|
|
|
public string AuthenticationKind
|
|
{
|
|
get { return _authenticationKind; }
|
|
set { _authenticationKind = value; }
|
|
}
|
|
public string ConnectionName
|
|
{
|
|
get { return _connectionName; }
|
|
set { _connectionName = value; }
|
|
}
|
|
public string AccountKey
|
|
{
|
|
get { return _accountKey; }
|
|
set { _accountKey = value; }
|
|
}
|
|
public string PrivacyLevel
|
|
{
|
|
get { return _privacyLevel; }
|
|
set { _privacyLevel = value; }
|
|
}
|
|
public float DpiScaleFactor
|
|
{
|
|
get { return _dpiScaleFactor; }
|
|
set { _dpiScaleFactor = value; }
|
|
}
|
|
|
|
public BlobCredentials()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void BlobCredentials_Load(object sender, EventArgs e)
|
|
{
|
|
if (_dpiScaleFactor > 1)
|
|
{
|
|
//DPI
|
|
float dpiScaleFactorFudged = _dpiScaleFactor * Utils.PrimaryFudgeFactor;
|
|
|
|
if (Settings.Default.OptionHighDpiLocal)
|
|
{
|
|
this.Scale(new SizeF(dpiScaleFactorFudged * 0.44f, dpiScaleFactorFudged * 0.38f));
|
|
this.Width = Convert.ToInt32(this.Width * dpiScaleFactorFudged * 0.8f);
|
|
foreach (Control control in Utils.GetChildInControl(this))
|
|
{
|
|
if (control is Button)
|
|
{
|
|
control.Font = new Font(control.Font.FontFamily,
|
|
control.Font.Size * dpiScaleFactorFudged * 1.1f * Utils.PrimaryFudgeFactor,
|
|
control.Font.Style);
|
|
control.Left = control.Left - 90;
|
|
if (control.Name == "btnCancel")
|
|
{
|
|
control.Left = control.Left - 60;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
control.Font = new Font(control.Font.FontFamily,
|
|
//cbw todo check * 1.4f works on remote desktop setting
|
|
control.Font.Size * dpiScaleFactorFudged * 1.4f * Utils.PrimaryFudgeFactor,
|
|
control.Font.Style);
|
|
}
|
|
|
|
if (control is Button || control is TextBox || control is ComboBox)
|
|
{
|
|
control.Width = Convert.ToInt32(control.Width * 0.78);
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
this.Scale(new SizeF(dpiScaleFactorFudged * 0.44f, dpiScaleFactorFudged * 0.38f));
|
|
this.Width = Convert.ToInt32(this.Width * dpiScaleFactorFudged * 0.6f);
|
|
foreach (Control control in Utils.GetChildInControl(this))
|
|
{
|
|
control.Font = new Font(control.Font.FontFamily,
|
|
control.Font.Size * dpiScaleFactorFudged * Utils.PrimaryFudgeFactor,
|
|
control.Font.Style);
|
|
}
|
|
}
|
|
}
|
|
|
|
this.KeyPreview = true;
|
|
|
|
txtConnectionName.Text = _connectionName;
|
|
txtAccountKey.Text = _accountKey;
|
|
cboPrivacyLevel.Text = "None";
|
|
|
|
this.ActiveControl = txtAccountKey;
|
|
}
|
|
|
|
private void ImpersonationCredentials_FormClosing(object sender, FormClosingEventArgs e)
|
|
{
|
|
if (DialogResult != DialogResult.OK)
|
|
{
|
|
//User Cancelling, so do nothing
|
|
return;
|
|
}
|
|
_accountKey = txtAccountKey.Text;
|
|
_privacyLevel = cboPrivacyLevel.Text;
|
|
}
|
|
}
|
|
}
|