CreateWindowEx(0l, "STATIC", "mystatic" , 
               WS_CHILD | WS_VISIBLE | WS_BORDER ,
               x, y, width, hieght, 
               hwnd, (HMENU)ID, NULL, NULL);style = GetWindowLong(GetDlgItem(hwnd, ID), GWL_STYLE);style的值为什么不与创建窗口时所指定的窗口风格值不相等? 也就是说style != WS_CHILD | WS_VISIBLE | WS_BORDER .而且我在用SetWindowLong试图改变窗口风格时总是失败,不知为什么?另外ID的大小有什么限制吗?