markus / ConvertService / ConverterService / DZConverterLib / Utilities / WindowInterop.cs @ 3035602a
이력 | 보기 | 이력해설 | 다운로드 (549 Bytes)
1 | 7ca218b3 | KangIngu | using System; |
---|---|---|---|
2 | using System.Collections.Generic; |
||
3 | using System.Text; |
||
4 | using System.Windows.Forms; |
||
5 | using System.Windows.Interop; |
||
6 | using System.Windows; |
||
7 | |||
8 | |||
9 | |||
10 | namespace DZConverterLib |
||
11 | { |
||
12 | public class WindowInterop : System.Windows.Forms.IWin32Window |
||
13 | { |
||
14 | |||
15 | IntPtr _handle; |
||
16 | //public WindowInterop(Window window) |
||
17 | //{ |
||
18 | // _handle = new WindowInteropHelper(window).Handle; |
||
19 | //} |
||
20 | |||
21 | IntPtr System.Windows.Forms.IWin32Window.Handle |
||
22 | { |
||
23 | get |
||
24 | { |
||
25 | return _handle; |
||
26 | } |
||
27 | } |
||
28 | } |
||
29 | } |