コード例 #1
0
ファイル: ReturnBook.cs プロジェクト: EndermanOfCoding/LM
        private void mIssueBookBtn_Click(object sender, EventArgs e)
        {
            IssueBook issueBook = new IssueBook(userId);

            this.Hide();
            issueBook.Show();
        }
コード例 #2
0
        private void issueBookToolStripMenuItem_Click(object sender, EventArgs e)
        {
            ib.MdiParent = this;

            foreach (Form frm in fc)
            {
                if (frm.Name == "IssueBook")
                {
                    frm.Focus();
                    frm.WindowState = FormWindowState.Maximized;
                    FormFound       = true;
                }
            }
            if (FormFound == false)
            {
                ib.Show();
            }
        }
コード例 #3
0
        private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            IssueBook issue = new IssueBook();

            issue.Show();
        }