Advertisement
memezisnotded

Untitled

Feb 24th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.17 KB | None | 0 0
  1. using System;
  2. using System.ComponentModel;
  3. using System.Diagnostics;
  4. using System.Drawing;
  5. using System.Threading;
  6. using System.Windows.Forms;
  7.  
  8. namespace Multiple_ROBLOX
  9. {
  10. public class Form1 : Form
  11. {
  12. private IContainer components;
  13. private Label label1;
  14. private Label label2;
  15. private LinkLabel linkLabel1;
  16. private Label label3;
  17.  
  18. public Form1()
  19. {
  20. this.InitializeComponent();
  21. }
  22.  
  23. private void Form1_Load(object sender, EventArgs e)
  24. {
  25. Mutex mutex = new Mutex(true, "ROBLOX_singletonMutex");
  26. }
  27.  
  28. private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
  29. {
  30. Process.Start("http://www.wearedevs.net");
  31. }
  32.  
  33. protected override void Dispose(bool disposing)
  34. {
  35. if (disposing && this.components != null)
  36. this.components.Dispose();
  37. base.Dispose(disposing);
  38. }
  39.  
  40. private void InitializeComponent()
  41. {
  42. ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof (Form1));
  43. this.label1 = new Label();
  44. this.label2 = new Label();
  45. this.linkLabel1 = new LinkLabel();
  46. this.label3 = new Label();
  47. this.SuspendLayout();
  48. this.label1.AutoSize = true;
  49. this.label1.BackColor = Color.Transparent;
  50. this.label1.Font = new Font("Verdana", 11.25f, FontStyle.Regular, GraphicsUnit.Point, (byte) 0);
  51. this.label1.ForeColor = Color.White;
  52. this.label1.Location = new Point(11, 33);
  53. this.label1.Name = "label1";
  54. this.label1.Size = new Size(88, 18);
  55. this.label1.TabIndex = 0;
  56. this.label1.Text = "324A4A31";
  57. this.label2.AutoSize = true;
  58. this.label2.BackColor = Color.Transparent;
  59. this.label2.Font = new Font("Verdana", 15.75f, FontStyle.Regular, GraphicsUnit.Point, (byte) 0);
  60. this.label2.ForeColor = Color.White;
  61. this.label2.Location = new Point(9, 8);
  62. this.label2.Name = "label2";
  63. this.label2.Size = new Size(261, 25);
  64. this.label2.TabIndex = 1;
  65. this.label2.Text = "Multiple Game Instance";
  66. this.linkLabel1.AutoSize = true;
  67. this.linkLabel1.BackColor = Color.Transparent;
  68. this.linkLabel1.Font = new Font("Verdana", 11.25f, FontStyle.Regular, GraphicsUnit.Point, (byte) 0);
  69. this.linkLabel1.ForeColor = Color.White;
  70. this.linkLabel1.LinkColor = Color.White;
  71. this.linkLabel1.Location = new Point(82, 237);
  72. this.linkLabel1.Name = "linkLabel1";
  73. this.linkLabel1.Size = new Size(118, 18);
  74. this.linkLabel1.TabIndex = 2;
  75. this.linkLabel1.TabStop = true;
  76. this.linkLabel1.Text = "wearedevs.net";
  77. this.linkLabel1.LinkClicked += new LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
  78. this.label3.AutoSize = true;
  79. this.label3.BackColor = Color.Transparent;
  80. this.label3.Font = new Font("Verdana", 9f, FontStyle.Regular, GraphicsUnit.Point, (byte) 0);
  81. this.label3.ForeColor = Color.White;
  82. this.label3.Location = new Point(5, 81);
  83. this.label3.Name = "label3";
  84. this.label3.Size = new Size(274, 126);
  85. this.label3.TabIndex = 3;
  86. this.label3.Text = componentResourceManager.GetString("label3.Text");
  87. this.label3.TextAlign = ContentAlignment.TopCenter;
  88. this.AutoScaleDimensions = new SizeF(6f, 13f);
  89. this.AutoScaleMode = AutoScaleMode.Font;
  90. this.BackgroundImage = (Image) componentResourceManager.GetObject("$this.BackgroundImage");
  91. this.BackgroundImageLayout = ImageLayout.Stretch;
  92. this.ClientSize = new Size(284, 261);
  93. this.Controls.Add((Control) this.label3);
  94. this.Controls.Add((Control) this.linkLabel1);
  95. this.Controls.Add((Control) this.label2);
  96. this.Controls.Add((Control) this.label1);
  97. this.Icon = (Icon) componentResourceManager.GetObject("$this.Icon");
  98. this.MaximizeBox = false;
  99. this.MaximumSize = new Size(300, 300);
  100. this.MinimizeBox = false;
  101. this.MinimumSize = new Size(300, 300);
  102. this.Name = nameof (Form1);
  103. this.Text = "Multiple Game Instance";
  104. this.Load += new EventHandler(this.Form1_Load);
  105. this.ResumeLayout(false);
  106. this.PerformLayout();
  107. }
  108. }
  109. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement