Files
raton4.0-source/Raton RAT/Raton/Forms/ClientForms/Dialogs/proxyDialog.cs
T
2026-08-27 11:23:13 -06:00

117 lines
3.7 KiB
C#

// Decompiled with JetBrains decompiler
// Type: Raton.Forms.ClientForms.Dialogs.proxyDialog
// Assembly: Raton, Version=0.4.0.0, Culture=neutral, PublicKeyToken=null
// MVID: 36C4E416-7F8D-4D23-930F-B5CCB0D810E7
// Assembly location: C:\Users\user\Desktop\v3.8.0 Deluxe Plugins (v4.0.0) cracked\Raton.exe
using Raton.Classes;
using System;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
#nullable disable
namespace Raton.Forms.ClientForms.Dialogs;
public class proxyDialog : Form
{
private IContainer components;
private TextBoxButton textBoxButton1;
private Label label1;
public NumericUpDown numericUpDown1;
public proxyDialog()
{
this.InitializeComponent();
DarkMode.Start((Form) this);
}
private void proxyDialog_Load(object sender, EventArgs e)
{
}
private void textBoxButton1_Click(object sender, EventArgs e)
{
this.DialogResult = DialogResult.OK;
this.Close();
}
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 (proxyDialog));
this.numericUpDown1 = new NumericUpDown();
this.textBoxButton1 = new TextBoxButton();
this.label1 = new Label();
this.numericUpDown1.BeginInit();
this.SuspendLayout();
this.numericUpDown1.BorderStyle = BorderStyle.None;
this.numericUpDown1.Location = new Point(12, 25);
this.numericUpDown1.Maximum = new Decimal(new int[4]
{
10000,
0,
0,
0
});
this.numericUpDown1.Minimum = new Decimal(new int[4]
{
1000,
0,
0,
0
});
this.numericUpDown1.Name = "numericUpDown1";
this.numericUpDown1.Size = new Size(200, 16 /*0x10*/);
this.numericUpDown1.TabIndex = 0;
this.numericUpDown1.Value = new Decimal(new int[4]
{
7070,
0,
0,
0
});
this.textBoxButton1.BackColor = Color.FromArgb(32 /*0x20*/, 32 /*0x20*/, 32 /*0x20*/);
this.textBoxButton1.Cursor = Cursors.Hand;
this.textBoxButton1.FlatAppearance.BorderSize = 0;
this.textBoxButton1.FlatStyle = FlatStyle.Flat;
this.textBoxButton1.Font = new Font("Microsoft JhengHei", 9f);
this.textBoxButton1.ForeColor = Color.White;
this.textBoxButton1.Location = new Point(12, 51);
this.textBoxButton1.Name = "textBoxButton1";
this.textBoxButton1.Size = new Size(200, 26);
this.textBoxButton1.TabIndex = 1;
this.textBoxButton1.Text = "Start proxy";
this.textBoxButton1.UseVisualStyleBackColor = false;
this.textBoxButton1.Click += new EventHandler(this.textBoxButton1_Click);
this.label1.AutoSize = true;
this.label1.Location = new Point(12, 9);
this.label1.Name = "label1";
this.label1.Size = new Size(26, 13);
this.label1.TabIndex = 2;
this.label1.Text = "Port";
this.AutoScaleDimensions = new SizeF(6f, 13f);
this.AutoScaleMode = AutoScaleMode.Font;
this.ClientSize = new Size(224 /*0xE0*/, 98);
this.Controls.Add((Control) this.textBoxButton1);
this.Controls.Add((Control) this.numericUpDown1);
this.Controls.Add((Control) this.label1);
this.Icon = (Icon) componentResourceManager.GetObject("$this.Icon");
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = nameof (proxyDialog);
this.StartPosition = FormStartPosition.CenterScreen;
this.Text = "Proxy";
this.Load += new EventHandler(this.proxyDialog_Load);
this.numericUpDown1.EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
}