예제 #1
0
파일: FormMain.cs 프로젝트: blamoo/MALTweet
        private void FormMain_Load(object sender, EventArgs e)
        {
            FormProgress fp = new FormProgress();

            fp.RunAction((se, ev) =>
            {
                App = new MALTweet(fp);
            });

            if (fp.ShowDialog() == DialogResult.Cancel)
                Close();

            UpdateForm();
        }
예제 #2
0
파일: FormMAL.cs 프로젝트: blamoo/MALTweet
 public FormMAL(MALTweet app)
 {
     App = app;
     InitializeComponent();
 }