예제 #1
0
        private void mainSheet_setRow(int rowidx, HistoryData hd)
        {
            DataGridViewRow row = mainSheet.Rows[rowidx];
            int             cc  = 0;

            row.Cells[cc++].Value = hd.getDir();
            row.Cells[cc++].Value = Utils.stampToString(hd.getStamp());
            row.Cells[cc++].Value = hd.getProblemInfo().getName();
            row.Cells[cc++].Value = Utils.levelToString(hd.getLevel());
        }
예제 #2
0
 public MkAndPrintWin(HistoryData historyData)
     : this(historyData.getProblemInfo(), historyData.getLevel(), historyData)
 {
 }