示例#1
0
文件: LogFile.cs 项目: simoneb/lsight
 public LogFile(string path, Color color, string timestampPattern, LogOffset offset)
 {
     Path = path;
     Color = color;
     TimestampPattern = timestampPattern;
     Offset = offset;
 }
 public AddLogFileDefinitionCommand(string path, Color color, string timestampPattern, LogOffset offset)
 {
     Path = path;
     Color = color;
     TimestampPattern = timestampPattern;
     Offset = offset;
 }
示例#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);
 }
示例#4
0
 public void ChangeHourOffset(LogOffset hourOffset)
 {
     Offset = hourOffset;
 }