SetWindowTitleWithCFString() private method

private SetWindowTitleWithCFString ( IntPtr windowRef, IntPtr title ) : void
windowRef System.IntPtr
title System.IntPtr
return void
Esempio n. 1
0
        internal static void SetWindowTitle(IntPtr windowRef, string title)
        {
            IntPtr title1 = API.__CFStringMakeConstantString(title);

            API.SetWindowTitleWithCFString(windowRef, title1);
        }