MalwareSourceCode/MSIL/Constructor/Win32/T/Constructor.Win32.Trucha.a-b3a9f9bfca0d58d23a418e9baa7aa933399c352cb80473bdc3deeee4272e88fc/About.cs
2022-08-18 06:28:56 -05:00

129 lines
5.3 KiB
C#

// Decompiled with JetBrains decompiler
// Type: El_Trucha_s_Virus_Maker_2005.About
// Assembly: "El-Trucha's Virus Maker 2005", Version=1.0.1913.26518, Culture=neutral, PublicKeyToken=null
// MVID: 43024C13-9626-43BD-9145-B3D934449AAC
// Assembly location: C:\Users\Administrateur\Downloads\Virusshare-00000-msil\Constructor.Win32.Trucha.a-b3a9f9bfca0d58d23a418e9baa7aa933399c352cb80473bdc3deeee4272e88fc.exe
using System;
using System.ComponentModel;
using System.Diagnostics;
using System.Drawing;
using System.Resources;
using System.Windows.Forms;
namespace El_Trucha_s_Virus_Maker_2005
{
public class About : Form
{
private Label label1;
private Label label2;
private LinkLabel linkLabel2;
private LinkLabel linkLabel1;
private PictureBox pictureBox1;
private Process ie;
private LinkLabel linkLabel3;
private Container components = (Container) null;
public About() => this.InitializeComponent();
protected override void Dispose(bool disposing)
{
if (disposing && this.components != null)
this.components.Dispose();
base.Dispose(disposing);
}
private void InitializeComponent()
{
ResourceManager resourceManager = new ResourceManager(typeof (About));
this.label1 = new Label();
this.label2 = new Label();
this.linkLabel2 = new LinkLabel();
this.linkLabel1 = new LinkLabel();
this.pictureBox1 = new PictureBox();
this.ie = new Process();
this.linkLabel3 = new LinkLabel();
this.SuspendLayout();
this.label1.Location = new Point(8, 8);
this.label1.Name = "label1";
this.label1.Size = new Size(192, 56);
this.label1.TabIndex = 0;
this.label1.Text = "This program was made by El-Trucha (Leonardo M. Cabrera, in case somebody who knows me in real life doesn't believe me...)";
this.label1.TextAlign = ContentAlignment.TopCenter;
this.label2.Location = new Point(8, 72);
this.label2.Name = "label2";
this.label2.Size = new Size(192, 80);
this.label2.TabIndex = 1;
this.label2.Text = "Special thanks to my friend Defcon, who helped me with beta testing this program. Thanks also to the people at The Code Project and MSDN, which helped me with the code.";
this.label2.TextAlign = ContentAlignment.TopCenter;
this.linkLabel2.ImeMode = ImeMode.NoControl;
this.linkLabel2.LinkArea = new LinkArea(0, 20);
this.linkLabel2.Location = new Point(40, 240);
this.linkLabel2.Name = "linkLabel2";
this.linkLabel2.Size = new Size(120, 16);
this.linkLabel2.TabIndex = 31;
((Label) this.linkLabel2).TabStop = true;
this.linkLabel2.Text = "eltrucha14@gmail.com";
this.linkLabel2.LinkClicked += new LinkLabelLinkClickedEventHandler(this.linkLabel2_LinkClicked);
this.linkLabel1.ImeMode = ImeMode.NoControl;
this.linkLabel1.LinkArea = new LinkArea(0, 17);
this.linkLabel1.Location = new Point(48, 224);
this.linkLabel1.Name = "linkLabel1";
this.linkLabel1.Size = new Size(104, 16);
this.linkLabel1.TabIndex = 30;
((Label) this.linkLabel1).TabStop = true;
this.linkLabel1.Text = "www.TruchaSoft.tk";
this.linkLabel1.LinkClicked += new LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
this.pictureBox1.Image = (Image) resourceManager.GetObject("pictureBox1.Image");
this.pictureBox1.ImeMode = ImeMode.NoControl;
this.pictureBox1.Location = new Point(32, 160);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new Size(144, 56);
this.pictureBox1.TabIndex = 29;
this.pictureBox1.TabStop = false;
this.ie.SynchronizingObject = (ISynchronizeInvoke) this;
this.linkLabel3.Location = new Point(24, 256);
this.linkLabel3.Name = "linkLabel3";
this.linkLabel3.Size = new Size(160, 16);
this.linkLabel3.TabIndex = 32;
((Label) this.linkLabel3).TabStop = true;
this.linkLabel3.Text = "www.freewebs.com/evilmaiden";
this.AutoScaleBaseSize = new Size(5, 13);
this.ClientSize = new Size(208, 280);
this.Controls.Add((Control) this.linkLabel3);
this.Controls.Add((Control) this.linkLabel2);
this.Controls.Add((Control) this.linkLabel1);
this.Controls.Add((Control) this.pictureBox1);
this.Controls.Add((Control) this.label2);
this.Controls.Add((Control) this.label1);
this.FormBorderStyle = FormBorderStyle.FixedSingle;
this.Icon = (Icon) resourceManager.GetObject("$this.Icon");
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = nameof (About);
this.StartPosition = FormStartPosition.CenterScreen;
this.Text = "About ETVM05";
this.Load += new EventHandler(this.About_Load);
this.ResumeLayout(false);
}
private void About_Load(object sender, EventArgs e)
{
}
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
this.ie.StartInfo.FileName = "iexplore.exe";
this.ie.StartInfo.Arguments = "\"http://www.truchasoft.tk\"";
this.ie.Start();
}
private void linkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
this.ie.StartInfo.FileName = "iexplore.exe";
this.ie.StartInfo.Arguments = "\"mailto:eltrucha14@gmail.com\"";
this.ie.Start();
}
}
}