CommonControls.CommonLightBox.GetWindowRectangle C# (CSharp) 메소드

GetWindowRectangle() 공개 정적인 메소드

public static GetWindowRectangle ( Window window ) : RECT
window System.Windows.Window
리턴 RECT
        public static RECT GetWindowRectangle(Window window)
        {
            RECT rect;
            GetWindowRect((new WindowInteropHelper(window)).Handle, out rect);

            return rect;
        }