Example #1
0
        public TopicForm(AuthentificationForm authentificationForm
                         , ClientTopicsManager ctm, Chatter c)
        {
            this.authentificationForm = authentificationForm;
            this.ctm = ctm;

            chatter = c;

            topicRooms = new Dictionary <string, ChatroomIHM>();

            InitializeComponent();
        }
Example #2
0
        public MainForm(AuthentificationForm authentificationForm
                        , ClientTopicsManager ctm, Chatter c)
        {
            this.authentificationForm = authentificationForm;
            this.ctm = ctm;

            chatter = c;

            InitializeComponent();

            new Thread(Run).Start();
        }