public PropertiesDialog(ScanFile scanContents, OcrFile ocrContents) { InitializeComponent(); this.ScanContents = scanContents; this.OcrContents = ocrContents; }
public ActivityDialog(int scanFileID, OcrFile pdfFile, OcrActivity activity) { InitializeComponent(); this.ScanFileID = scanFileID; this.PdfFile = pdfFile; this.Activity = activity; }
public PropertiesDialog(Window parent, ScanFile scanContents, OcrFile ocrContents) : this(scanContents, ocrContents) { this.Owner = parent; }
public ActivityDialog(Window parent, int scanFileID, OcrFile pdfFile, OcrActivity activity) : this(scanFileID, pdfFile, activity) { this.Owner = parent; }