コード例 #1
0
ファイル: SendScanDialog.xaml.cs プロジェクト: ppucik/DOZP
        public SendScanDialog(Book sendBook, ScanImages scannedImages)
        {
            InitializeComponent();

            this.ScannedImages = scannedImages;
            this.SendBook = sendBook;
        }
コード例 #2
0
ファイル: ScanImageListView.cs プロジェクト: ppucik/DOZP
 public void Clear()
 {
     try
     {
         this.ScanImages = null;
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
コード例 #3
0
ファイル: SendScanDialog.xaml.cs プロジェクト: ppucik/DOZP
 public SendScanDialog(Window parent, Book sendBook, ScanImages scannedImages)
     : this(sendBook, scannedImages)
 {
     this.Owner = parent;
 }