如图----这个怎么实现的
用win32API

解决方案 »

  1.   

    标题栏最左边的那个ICON图标?
      

  2.   

    SetWindowLong
    The SetWindowLong function changes an attribute of the specified window. The function also sets the 32-bit (long) value at the specified offset into the extra window memory. Note  This function has been superseded by the SetWindowLongPtr function. To write code that is compatible with both 32-bit and 64-bit versions of Windows, use SetWindowLongPtr. LONG SetWindowLong(
      HWND hWnd,       // handle to window
      int nIndex,      // offset of value to set
      LONG dwNewLong   // new value
    );
      

  3.   

    对话框 Title bar = false
      

  4.   


    我这是纯win32API 没属性选项
      

  5.   

    你这个貌似只要设置system menu = false就可以
      

  6.   

       hWnd = CreateWindow(szWindowClass, szTitle, WS_OVERLAPPEDWINDOW&~WS_SYSMENU,
          CW_USEDEFAULT, 0, CW_USEDEFAULT, 0, NULL, NULL, hInstance, NULL);