Exemplo n.º 1
0
 public LogFile(string path, Color color, string timestampPattern, LogOffset offset)
 {
     Path = path;
     Color = color;
     TimestampPattern = timestampPattern;
     Offset = offset;
 }
Exemplo n.º 2
0
 public AddLogFileDefinitionCommand(string path, Color color, string timestampPattern, LogOffset offset)
 {
     Path = path;
     Color = color;
     TimestampPattern = timestampPattern;
     Offset = offset;
 }
Exemplo n.º 3
0
 public LogLineViewModel(TimestampedLine line, string path, LogOffset offset, Color color)
 {
     Contents = line.Contents;
     Path = path;
     Timestamp = line.Timestamp;
     Offset = offset;
     Brush = new SolidColorBrush(color);
 }
Exemplo n.º 4
0
 public void ChangeHourOffset(LogOffset hourOffset)
 {
     Offset = hourOffset;
 }