设置窗体边框显示隐藏的函数setwindowlong和setwindowpos
这2个函数怎么用 给个例子可以么.
谢谢了 还有各个参数都是神马 谢谢了

解决方案 »

  1.   

    SetWindowLong(this.Handle,GWL_STYLE,WS_BORDER);
    看MSDN
      

  2.   

    囧 msdn里么找到 c# 的例子好不好 只有函数原型 我晕了 我就想知道函数后面的参数都是神马 怎么设置边框显示和隐藏就这么难么 难道你们都不用api么 我郁闷了 万能的api大神快快出现吧
      

  3.   

    现在隐藏已经可以使用了
    private const int GWL_STYLE = (-16);
    public const int WS_CAPTION = 0xC00000;
    SetWindowLong(this.Handle, GWL_STYLE, GetWindowLong(this.Handle, GWL_STYLE) & ~WS_CAPTION)求咋样显示边框呢
      

  4.   

    唉 自己搞定了 哈哈        private const int GWL_STYLE = (-16);
            public const int WS_CAPTION = 0xC00000;
            [Flags]
            public enum SetWindowPosFlags : uint
            {
                // ReSharper disable InconsistentNaming            /// <summary>
                ///     If the calling thread and the thread that owns the window are attached to different input queues, the system posts the request to the thread that owns the window. This prevents the calling thread from blocking its execution while other threads process the request.
                /// </summary>
                SWP_ASYNCWINDOWPOS = 0x4000,            /// <summary>
                ///     Prevents generation of the WM_SYNCPAINT message.
                /// </summary>
                SWP_DEFERERASE = 0x2000,            /// <summary>
                ///     Draws a frame (defined in the window's class description) around the window.
                /// </summary>
                SWP_DRAWFRAME = 0x0020,            /// <summary>
                ///     Applies new frame styles set using the SetWindowLong function. Sends a WM_NCCALCSIZE message to the window, even if the window's size is not being changed. If this flag is not specified, WM_NCCALCSIZE is sent only when the window's size is being changed.
                /// </summary>
                SWP_FRAMECHANGED = 0x0020,            /// <summary>
                ///     Hides the window.
                /// </summary>
                SWP_HIDEWINDOW = 0x0080,            /// <summary>
                ///     Does not activate the window. If this flag is not set, the window is activated and moved to the top of either the topmost or non-topmost group (depending on the setting of the hWndInsertAfter parameter).
                /// </summary>
                SWP_NOACTIVATE = 0x0010,            /// <summary>
                ///     Discards the entire contents of the client area. If this flag is not specified, the valid contents of the client area are saved and copied back into the client area after the window is sized or repositioned.
                /// </summary>
                SWP_NOCOPYBITS = 0x0100,            /// <summary>
                ///     Retains the current position (ignores X and Y parameters).
                /// </summary>
                SWP_NOMOVE = 0x0002,            /// <summary>
                ///     Does not change the owner window's position in the Z order.
                /// </summary>
                SWP_NOOWNERZORDER = 0x0200,            /// <summary>
                ///     Does not redraw changes. If this flag is set, no repainting of any kind occurs. This applies to the client area, the nonclient area (including the title bar and scroll bars), and any part of the parent window uncovered as a result of the window being moved. When this flag is set, the application must explicitly invalidate or redraw any parts of the window and parent window that need redrawing.
                /// </summary>
                SWP_NOREDRAW = 0x0008,            /// <summary>
                ///     Same as the SWP_NOOWNERZORDER flag.
                /// </summary>
                SWP_NOREPOSITION = 0x0200,            /// <summary>
                ///     Prevents the window from receiving the WM_WINDOWPOSCHANGING message.
                /// </summary>
                SWP_NOSENDCHANGING = 0x0400,            /// <summary>
                ///     Retains the current size (ignores the cx and cy parameters).
                /// </summary>
                SWP_NOSIZE = 0x0001,            /// <summary>
                ///     Retains the current Z order (ignores the hWndInsertAfter parameter).
                /// </summary>
                SWP_NOZORDER = 0x0004,            /// <summary>
                ///     Displays the window.
                /// </summary>
                SWP_SHOWWINDOW = 0x0040,            // ReSharper restore InconsistentNaming
            }        static readonly IntPtr HWND_TOP = new IntPtr(0);
            //显示
            private void button2_Click(object sender, EventArgs e)
            {
                SetWindowLong(this.Handle, GWL_STYLE, GetWindowLong(this.Handle, GWL_STYLE) | WS_CAPTION).ToString();
                SetWindowPos(this.Handle, HWND_TOP, 0, 0, 0, 0, SetWindowPosFlags.SWP_NOMOVE | SetWindowPosFlags.SWP_NOSIZE | SetWindowPosFlags.SWP_FRAMECHANGED); 
            }
            //隐藏
            private void button3_Click(object sender, EventArgs e)
            {
                SetWindowLong(this.Handle, GWL_STYLE, GetWindowLong(this.Handle, GWL_STYLE) & ~WS_CAPTION).ToString();
                SetWindowPos(this.Handle, HWND_TOP, 0, 0, 0, 0, SetWindowPosFlags.SWP_NOMOVE | SetWindowPosFlags.SWP_NOSIZE | SetWindowPosFlags.SWP_FRAMECHANGED); 
            }
      

  5.   

    我郁闷啊 还是么人来帮忙  看来 难道 真要我自己解决了...
    donet做底层api的东西咋就这么少人研究啊..纠结
      

  6.   

    楼主,在NET里面设置无边框,不是很简单的事情吗,为什么还要调用API的函数来做,有这个必要?
      

  7.   

    额 在net里是可以设置 但是我是用c# 写程序 设置一个别的程序啊.那个程序不是我自己写的..
    要不我才不这么费劲找资料了..
      

  8.   

    一句话:SetWindowLong(this.Handle, -16, 369164288);具体看网页
    http://topic.csdn.net/u/20090820/11/1b30a514-17e7-403a-ae07-70c81e6ced47.html
      

  9.   


    话说我之前那个可以隐藏和显示 但是显示效果不好 程序的图标和最大化 最小化 关闭 三个按钮没有
    谁知道怎么设置那个api的最后那个属性啊
      

  10.   

    额 最后还是看了一个vb的例子 介绍了各个参数 然后自己解决了 o(︶︿︶)o 唉
    现在结贴