blob: 7ed5c3eb29cd85af420ce865991eb6192af36c02 (
plain)
| ofs | hex dump | ascii |
|---|
| 0000 | ff d8 ff e0 00 10 4a 46 49 46 00 01 01 01 00 60 00 60 00 00 ff e1 10 d2 45 78 69 66 00 00 4d 4d | ......JFIF.....`.`......Exif..MM |
| 0020 | 00 2a 00 00 00 08 00 04 01 3b 00 02 00 00 00 04 52 6f 79 00 87 69 00 04 00 00 00 01 00 00 08 4a | .*.......;......Roy..i......using Microsoft.Win32;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
public static class CommonDialogExtensions
{
public static bool ShowDialogCenter(this CommonDialog dialog)
{
return dialog.ShowDialog(Application.Current.MainWindow).Value;
}
}
|