public ChatClientForm()
        {
            InitializeComponent();
            PopulateListView();

            c = new Connect();
        }
        public NewAccountForm(Connect c)
        {
            // Commento
            InitializeComponent();

            // Aggiorna lo stato del button Create
            UpdateCreateButtonState();

            this.c = c;
        }
Beispiel #3
0
 public LoginForm(Connect c)
 {
     InitializeComponent();
     this.c = c;
 }