コード例 #1
0
 public LogEntryRow(byte[] key, LogEntryItem logEntryItem)
 {
     Key          = key;
     LogEntryItem = logEntryItem;
     //Values = new System.Object[] {
     //	logEntryItem.Date.TimeAgo(),
     //	logEntryItem.Id,
     //	logEntryItem.Direction == DirectionEnum.Sent ? logEntryItem.Amount : 0,
     //	logEntryItem.Direction == DirectionEnum.Recieved ? logEntryItem.Amount : 0,
     //	logEntryItem.Balance
     //};
 }
コード例 #2
0
        private void AddLogEntry(string message)
        {
            LogEntryItem logEntryItem = new LogEntryItem(message);

            LogEntryItemCollection.Insert(0, logEntryItem);
        }
コード例 #3
0
 private void AddLogEntry(string message)
 {
     LogEntryItem logEntryItem = new LogEntryItem(message);
     LogEntryItemCollection.Insert(0, logEntryItem);
 }