Example #1
0
        private void UserTweetToolStripButton_Click(object sender, EventArgs e)
        {
            DownloadUserTweetListForm downloadUserTweetListForm = new DownloadUserTweetListForm();

            downloadUserTweetListForm.MdiParent = this;
            downloadUserTweetListForm.Show();
        }
        public void AddItem()
        {
            DownloadUserTweetListForm downloadUserTweetListForm = new DownloadUserTweetListForm(this.userId);

            downloadUserTweetListForm.ShowDialog();
        }