Virtu/Library/Wpf/WindowExtensions.cs
Sean Fausett 27a5e3ac89 Add git attributes file.
Normalize text files.
2013-06-18 16:52:34 +12:00

15 lines
293 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;
}
}
}