SetWindowTitleWithCFString() приватный Метод

private SetWindowTitleWithCFString ( IntPtr windowRef, IntPtr title ) : void
windowRef System.IntPtr
title System.IntPtr
Результат void
Пример #1
0
        internal static void SetWindowTitle(IntPtr windowRef, string title)
        {
            IntPtr title1 = API.__CFStringMakeConstantString(title);

            API.SetWindowTitleWithCFString(windowRef, title1);
        }