Exemple #1
0
 private void  中行ToolStripMenuItem_Click(object sender, EventArgs e)
 {
     //将选中行转置
     MainDT = Tabulation.Transposition(Tabulation.GetChosenTable(MainDT, dataGridView1), MainDT);
     Tabulation.InitDataSet(MainDT, ref nMax, ref pageCount, ref pageCurrent,
                            ref nCurrent, label_CurrentPage, label_TotalPage,
                            dataGridView1, textBox_CurrentPage, pageSize);
 }
Exemple #2
0
 private void 所有内容ToolStripMenuItem_Click(object sender, EventArgs e)
 {
     //将所有内容转置
     MainDT = Tabulation.Transposition(MainDT, MainDT, true);
     Tabulation.InitDataSet(MainDT, ref nMax, ref pageCount, ref pageCurrent,
                            ref nCurrent, label_CurrentPage, label_TotalPage,
                            dataGridView1, textBox_CurrentPage, pageSize);
 }