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
ZeroBruta + ZeroDizio NEW - Ielse.cs

Ielse.cs

Caricato da:
Scarica il programma completo

  1. using System;
  2. using System.IO;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. using System.Diagnostics;
  10. using System.Windows;
  11. using System.Threading;
  12. using Microsoft.Win32;
  13. using System.Runtime.InteropServices;
  14.  
  15.  
  16. namespace ZeroBruta
  17. {
  18.    public class Ielse
  19.     {
  20.         public TextBox x = new TextBox();
  21.         ZeroBruta mio;
  22.  
  23.         public Ielse(ZeroBruta o)
  24.         {
  25.             mio = o;
  26.             inizia();
  27.         }
  28.  
  29.         private void inizia()
  30.         {
  31.             x.Text = "else";
  32.             x.Size = new Size(100, 10);
  33.             x.ReadOnly = true;
  34.             x.RightToLeft = RightToLeft.Yes;
  35.             mio.Controls.Add(x);
  36.         }
  37.     }
  38. }