コード例 #1
0
ファイル: Index.cs プロジェクト: mipeal/StockManagementSystem
        private void itemSummaryToolStripMenuItem_Click(object sender, EventArgs e)
        {
            ItemSummaryUI itemSummary = new ItemSummaryUI();

            itemSummary.Show();
            this.Hide();
        }
コード例 #2
0
        private void itemSummaryToolStripMenuItem_Click(object sender, EventArgs e)
        {
            this.Hide();
            ItemSummaryUI summaryUi = new ItemSummaryUI(userNameLabel.Text);

            summaryUi.Show();
        }