Dwarrowdelf.Client.SharpDXHost.BuildWindowCore C# (CSharp) Method

BuildWindowCore() protected method

protected BuildWindowCore ( HandleRef hwndParent ) : HandleRef
hwndParent System.Runtime.InteropServices.HandleRef
return System.Runtime.InteropServices.HandleRef
        protected override HandleRef BuildWindowCore(HandleRef hwndParent)
        {
            var childHandle = new HandleRef(this, m_control.Handle);

            SetParent(childHandle, hwndParent.Handle);

            return childHandle;
        }