Example #1
0
        private void マイリストToolStripMenuItem_Click(object sender, EventArgs e)
        {
            if (_MyListForm == null)
            {
                _MyListForm = new MyListForm(this);
            }

            _MyListForm.Show();
            _MyListForm.RestoreMinimizedWindow();
            _MyListForm.TopMost = true;
            _MyListForm.TopMost = false;
        }
Example #2
0
 public void DisposeMylist()
 {
     _MyListForm = null;
 }