// Decompiled with JetBrains decompiler // Type: Autodesk.AutoCAD.ADMigrator.ImportDialog // Assembly: ADMigrator, Version=18.0.0.0, Culture=neutral, PublicKeyToken=null // MVID: 1EA8663B-E949-4FAD-ABC5-280393847F56 // Assembly location: C:\Users\Administrateur\Downloads\Virusshare-00001-msil\Virus.Win32.Sality.sil-906e49d7772808af1fb67511fd33b01c809079fddb77015425883ca9739cad33.exe using System.ComponentModel; using System.Drawing; using System.Windows.Forms; namespace Autodesk.AutoCAD.ADMigrator { public class ImportDialog : Form { private IContainer components; private Button btnOK; private Label lblSuccess; private Label lblLog; private CheckBox chkBxViewLog; public ImportDialog() => this.InitializeComponent(); public string successMsg { get => this.lblSuccess.Text; set => this.lblSuccess.Text = value; } public string labelLogText { get => this.lblLog.Text; set => this.lblLog.Text = value; } public bool displayLog => this.chkBxViewLog.Checked; protected override void Dispose(bool disposing) { if (disposing && this.components != null) this.components.Dispose(); base.Dispose(disposing); } private void InitializeComponent() { ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof (ImportDialog)); this.btnOK = new Button(); this.lblSuccess = new Label(); this.lblLog = new Label(); this.chkBxViewLog = new CheckBox(); this.SuspendLayout(); componentResourceManager.ApplyResources((object) this.btnOK, "btnOK"); this.btnOK.DialogResult = DialogResult.OK; this.btnOK.MinimumSize = new Size(75, 23); this.btnOK.Name = "btnOK"; this.btnOK.UseVisualStyleBackColor = true; componentResourceManager.ApplyResources((object) this.lblSuccess, "lblSuccess"); this.lblSuccess.Name = "lblSuccess"; componentResourceManager.ApplyResources((object) this.lblLog, "lblLog"); this.lblLog.MaximumSize = new Size(600, 0); this.lblLog.Name = "lblLog"; componentResourceManager.ApplyResources((object) this.chkBxViewLog, "chkBxViewLog"); this.chkBxViewLog.Checked = true; this.chkBxViewLog.CheckState = CheckState.Checked; this.chkBxViewLog.Name = "chkBxViewLog"; this.chkBxViewLog.UseVisualStyleBackColor = true; this.AcceptButton = (IButtonControl) this.btnOK; componentResourceManager.ApplyResources((object) this, "$this"); this.AutoScaleMode = AutoScaleMode.Font; this.Controls.Add((Control) this.chkBxViewLog); this.Controls.Add((Control) this.lblLog); this.Controls.Add((Control) this.lblSuccess); this.Controls.Add((Control) this.btnOK); this.Name = nameof (ImportDialog); this.ResumeLayout(false); this.PerformLayout(); } } }