예제 #1
0
파일: Autenticazione.cs 프로젝트: cugni/pds
        public bool OpenFromOpzioni; //alby

        #endregion Fields

        #region Constructors

        //alby
        /*
        public Autenticazione()
        {
            InitializeComponent();
        }*/
        //alby
        public Autenticazione(MainForm m, bool flg)
        {
            InitializeComponent();
            setIpAddress();
            mf = m;
            OpenFromOpzioni = flg;
        }
예제 #2
0
파일: Autenticazione.cs 프로젝트: cugni/pds
 //alby
 public Autenticazione(MainForm m, int address, string pass, string port, bool flg)
 {
     InitializeComponent();
     setIpAddress();
     mf = m;
     txtpass.Text = pass;
     txtport.Text = port;
     txtIp.SelectedIndex = address;
     OpenFromOpzioni = flg;
 }
예제 #3
0
파일: Impostazioni.cs 프로젝트: cugni/pds
        public Impostazioni(MainForm mf)
        {
            this.mf = mf;
            //alby
            disabilita = true;
            if (MainForm.StartToolStripMenuItem.Enabled) disabilita = false;
            else if (!mf.connected) disabilita = false;

            //alby end
            InitializeComponent();
        }
예제 #4
0
파일: FrmSelTasti.cs 프로젝트: cugni/pds
 public FrmSelTasti(MainForm f)
 {
     InitializeComponent();
     this.mf = f;
 }
예제 #5
0
파일: ChatServer.cs 프로젝트: cugni/pds
 // The constructor sets the IP address to the one retrieved by the instantiating object
 public ChatServer(MainForm mf)
 {
     this.mf = mf;//alby4
 }