mirror of
https://github.com/digital-jellyfish/Virtu.git
synced 2024-11-27 15:52:12 +00:00
365e5723c1
--HG-- extra : convert_revision : svn%3Affd33b8c-2492-42e0-bdc5-587b920b7d6d/trunk%4050811
15 lines
307 B
C#
15 lines
307 B
C#
using System;
|
|
using System.Windows;
|
|
using System.Windows.Interop;
|
|
|
|
namespace Jellyfish.Library
|
|
{
|
|
public static class WindowExtensions
|
|
{
|
|
public static IntPtr GetHandle(this Window window)
|
|
{
|
|
return new WindowInteropHelper(window).Handle;
|
|
}
|
|
}
|
|
}
|