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);
        }