예제 #1
0
        internal static void MoveProxyLogRecordBack(object JumpLevelObj)
        {
            int           JumpLevel = (int)JumpLevelObj;
            List <LogRow> Records   = GetPreviousProxyLogRecords(JumpLevel);

            if (Records.Count == 0)
            {
                return;
            }
            List <object[]> Rows = new List <object[]>();

            foreach (LogRow Record in Records)
            {
                Rows.Add(Record.ToProxyGridRowObjectArray());
            }
            IronUI.SetProxyGridRows(Rows);
        }
예제 #2
0
        internal static void MoveProxyLogRecordForward(object JumpLevelObj)
        {
            int           JumpLevel = (int)JumpLevelObj;
            List <LogRow> Records   = GetNextProxyLogRecords(JumpLevel);

            if (Records.Count == 0)
            {
                IronUI.ShowLogBottomStatus("Reached end of logs", true);
                return;
            }
            List <object[]> Rows = new List <object[]>();

            foreach (LogRow Record in Records)
            {
                Rows.Add(Record.ToProxyGridRowObjectArray());
            }
            IronUI.SetProxyGridRows(Rows);
        }