Example #1
0
        public ChatDialog()
        {
            // added by wizard
            InitializeComponent();

            // private instance variables
            _buffer    = new RichTextBuffer(richTextTranscript);
            _handles   = new Dictionary <string, string>();
            _setupUI   = new AlljoynSetup(this);
            _connected = false;

            _timer          = new System.Windows.Forms.Timer();
            _timer.Interval = 300;
            _timer.Start();
            _timer.Tick   += new EventHandler(timedEvent);
            _timer.Enabled = true;
        }
Example #2
0
        public ChatDialog()
        {
            // added by wizard
            InitializeComponent();

            // private instance variables
            _buffer = new RichTextBuffer(richTextTranscript);
            _handles = new Dictionary<string, string>();
            _setupUI = new AlljoynSetup(this);
            _connected = false;

            _timer = new System.Windows.Forms.Timer();
            _timer.Interval = 300;
            _timer.Start();
            _timer.Tick += new EventHandler(timedEvent);
            _timer.Enabled = true;
        }