Questo sito utilizza cookies solo per scopi di autenticazione sul sito e nient'altro. Nessuna informazione personale viene tracciata. Leggi l'informativa sui cookies.
Username: Password: oppure
Password System - Form1.cs

Form1.cs

Caricato da:
Scarica il programma completo

  1. using System;
  2. using System.Drawing;
  3. using System.Collections;
  4. using System.ComponentModel;
  5. using System.Windows.Forms;
  6. using System.Data;
  7.  
  8. namespace SaTaNaRiKPaSS
  9. {
  10.         /// <summary>
  11.         /// Descrizione di riepilogo per Form1.
  12.         /// </summary>
  13.         public class Form1 : System.Windows.Forms.Form
  14.         {
  15.                 private System.Windows.Forms.Label label1;
  16.                 /// <summary>
  17.                 /// Variabile di progettazione necessaria.
  18.                 /// </summary>
  19.                 private System.ComponentModel.Container components = null;
  20.  
  21.                 public Form1()
  22.                 {
  23.                         //
  24.                         // Necessario per il supporto di Progettazione Windows Form
  25.                         //
  26.                         InitializeComponent();
  27.  
  28.                         //
  29.                         // TODO: aggiungere il codice del costruttore dopo la chiamata a InitializeComponent
  30.                         //
  31.                 }
  32.  
  33.                 /// <summary>
  34.                 /// Pulire le risorse in uso.
  35.                 /// </summary>
  36.                 protected override void Dispose( bool disposing )
  37.                 {
  38.                         if( disposing )
  39.                         {
  40.                                 if (components != null)
  41.                                 {
  42.                                         components.Dispose();
  43.                                 }
  44.                         }
  45.                         base.Dispose( disposing );
  46.                 }
  47.  
  48.                 #region Codice generato da Progettazione Windows Form
  49.                 /// <summary>
  50.                 /// Metodo necessario per il supporto della finestra di progettazione. Non modificare
  51.                 /// il contenuto del metodo con l'editor di codice.
  52.                 /// </summary>
  53.                 private void InitializeComponent()
  54.                 {
  55.                         this.label1 = new System.Windows.Forms.Label();
  56.                         this.SuspendLayout();
  57.                         //
  58.                         // label1
  59.                         //
  60.                         this.label1.Font = new System.Drawing.Font("Comic Sans MS", 48F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
  61.                         this.label1.Location = new System.Drawing.Point(8, 16);
  62.                         this.label1.Name = "label1";
  63.                         this.label1.Size = new System.Drawing.Size(288, 216);
  64.                         this.label1.TabIndex = 0;
  65.                         this.label1.Text = "By SaTaNa";
  66.                         //
  67.                         // Form1
  68.                         //
  69.                         this.AutoScaleBaseSize = new System.Drawing.Size(6, 16);
  70.                         this.BackColor = System.Drawing.Color.Black;
  71.                         this.ClientSize = new System.Drawing.Size(296, 238);
  72.                         this.Controls.Add(this.label1);
  73.                         this.Font = new System.Drawing.Font("Comic Sans MS", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
  74.                         this.ForeColor = System.Drawing.Color.Red;
  75.                         this.Name = "Form1";
  76.                         this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  77.                         this.Text = "ProVa";
  78.                         this.Load += new System.EventHandler(this.Form1_Load);
  79.                         this.ResumeLayout(false);
  80.  
  81.                 }
  82.                 #endregion
  83.  
  84.                 /// <summary>
  85.                 /// Il punto di ingresso principale dell'applicazione.
  86.                 /// </summary>
  87.                 [STAThread]
  88.                 static void Main()
  89.                 {
  90.                         Application.Run(new Pass());
  91.                         Application.Run(new Form1());
  92.                 }
  93.  
  94.                 private void Form1_Load(object sender, System.EventArgs e)
  95.                 {
  96.                
  97.                 }
  98.         }
  99. }