Exemple #1
0
        public PollDialog(string title, RTCPresence presence)
        {
            //
            // Required for Windows Form Designer support
            //
            InitializeComponent();

            this.uriBox.Text = string.Empty;
            this.Text        = title;

            this.pollButton.Click   += new EventHandler(PollButton_Click);
            this.cancelButton.Click += new EventHandler(CancelButton_Click);

            this.rtcPresence = presence;
        }
        public PollDialog(string title, RTCPresence presence)
        {
            //
            // Required for Windows Form Designer support
            //
            InitializeComponent();

            this.uriBox.Text = string.Empty;
            this.Text = title;

            this.pollButton.Click +=new EventHandler(PollButton_Click);
            this.cancelButton.Click +=new EventHandler(CancelButton_Click);

            this.rtcPresence = presence;
        }