Desktop Functions: Smart Device Functions:
|
Search Results for "SetWindowLong" in [All]coredll
private static extern int SetWindowLong(IntPtr hWnd, int nIndex, int dwNewLong);
Private Shared Function SetWindowLong(ByVal hWnd As IntPtr, ByVal nIndex As Integer, ByVal dwNewLong As Integer) As Integer
SetWindowLong(hWnd, GWL_STYLE, (style | BS_CENTER | BS_VCENTER | BS_MULTILINE));
Private Function SetWindowLong(ByVal hWnd As IntPtr, ByVal nIndex As Integer, ByVal dwNewLong As Integer) As Integer
SetWindowLong(hWnd, GWL_STYLE, (style Or BS_VCENTER Or BS_MULTILINE)) 2: SetWindowPos
/// <summary>Applies new frame styles set using the SetWindowLong function. Sends a WM_NCCALCSIZE message to user32
/// static extern int SetWindowLong(IntPtr hWnd, int nIndex, int dwNewLong);
/// SetWindowLong(this.Handle, 0, 1);
static extern int SetWindowLong(IntPtr hWnd, int nIndex, int dwNewLong);
SetWindowLong(this.Handle, 0, 1);
SetWindowLong(Handle, GWL_EXSTYLE, GetWindowLong(Handle, GWL_EXSTYLE) ^ WS_EX_LAYERED);
SetWindowLong (ll_handle, GWL_EXSTYLE, ll_Ret)
public static IntPtr SetWindowLongPtr(HandleRef hWnd, int nIndex, IntPtr dwNewLong)
return SetWindowLongPtr64(hWnd, nIndex, dwNewLong);
return new IntPtr(SetWindowLong32(hWnd, nIndex, dwNewLong.ToInt32()));
[DllImport("user32.dll", EntryPoint="SetWindowLong")]
private static extern int SetWindowLong32(HandleRef hWnd, int nIndex, int dwNewLong);
[DllImport("user32.dll", EntryPoint="SetWindowLongPtr")]
private static extern IntPtr SetWindowLongPtr64(HandleRef hWnd, int nIndex, IntPtr dwNewLong);
<System.Runtime.InteropServices.DllImport("user32.dll", EntryPoint:="SetWindowLong")> _
Private Shared Function SetWindowLong32(ByVal hWnd As IntPtr, <MarshalAs(UnmanagedType.I4)>nIndex As WindowLongFlags, ByVal dwNewLong As Integer) As Integer
<System.Runtime.InteropServices.DllImport("user32.dll", EntryPoint:="SetWindowLongPtr")> _
Private Shared Function SetWindowLongPtr64(ByVal hWnd As IntPtr, <MarshalAs(UnmanagedType.I4)>nIndex As WindowLongFlags, ByVal dwNewLong As IntPtr) As IntPtr
Public Shared Function SetWindowLongPtr(ByVal hWnd As IntPtr, nIndex As WindowLongFlags, ByVal dwNewLong As IntPtr) As IntPtr
Return SetWindowLongPtr64(hWnd, nIndex, dwNewLong)
Return New IntPtr(SetWindowLong32(hWnd, nIndex, dwNewLong.ToInt32))
Public Declare Function SetWindowLongPtr Lib "user32" Alias "SetWindowLongPtrA" _ Additional information: Unable to find an entry point named 'SetWindowLongPtrA' in DLL 'user32'
// SetWindowLongPtr
public static IntPtr SetWindowLongPtr(HandleRef hWnd, int nIndex, IntPtr dwNewLong)
return SetWindowLongPtr64(hWnd, nIndex, dwNewLong);
return new IntPtr(SetWindowLong32(hWnd, nIndex, dwNewLong.ToInt32()));
[DllImport("user32.dll", EntryPoint="SetWindowLong")]
private static extern int SetWindowLong32(HandleRef hWnd, int nIndex, int dwNewLong);
[DllImport("user32.dll", EntryPoint="SetWindowLongPtr")]
private static extern IntPtr SetWindowLongPtr64(HandleRef hWnd, int nIndex, IntPtr dwNewLong);
<System.Runtime.InteropServices.DllImport("user32.dll", EntryPoint:="SetWindowLong")> _
Private Shared Function SetWindowLong32(ByVal hWnd As IntPtr, <MarshalAs(UnmanagedType.I4)>nIndex As WindowLongFlags, ByVal dwNewLong As Integer) As Integer
<System.Runtime.InteropServices.DllImport("user32.dll", EntryPoint:="SetWindowLongPtr")> _
Private Shared Function SetWindowLongPtr64(ByVal hWnd As IntPtr, <MarshalAs(UnmanagedType.I4)>nIndex As WindowLongFlags, ByVal dwNewLong As IntPtr) As IntPtr
Public Shared Function SetWindowLongPtr(ByVal hWnd As IntPtr, nIndex As WindowLongFlags, ByVal dwNewLong As IntPtr) As IntPtr
Return SetWindowLongPtr64(hWnd, nIndex, dwNewLong)
Return New IntPtr(SetWindowLong32(hWnd, nIndex, dwNewLong.ToInt32))
Public Declare Function SetWindowLongPtr Lib "user32" Alias "SetWindowLongPtrA" _ Additional information: Unable to find an entry point named 'SetWindowLongPtrA' in DLL 'user32' 7: SetWindowPos
/// Applies new frame styles set using the SetWindowLong function. Sends a WM_NCCALCSIZE message
/// If you have changed certain window data using SetWindowLong, you must call SetWindowPos for the changes to
/// 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. Constants8: WM
Enums
/// <summary>Applies new frame styles set using the SetWindowLong function. Sends a WM_NCCALCSIZE message to
''' <summary>Applies new frame styles set using the SetWindowLong function. Sends a WM_NCCALCSIZE message to 10: WindowLongFlags
11: WindowsMessages
/// The WM_STYLECHANGING message is sent to a window when the SetWindowLong function is about to change one or more of the window's styles.
/// The WM_STYLECHANGED message is sent to a window after the SetWindowLong function has changed one or more of the window's styles
'''The WM_STYLECHANGED message is sent to a window after the SetWindowLong function has changed one or more of the window's styles.
'''The WM_STYLECHANGING message is sent to a window when the SetWindowLong function is about to change one or more of the window's styles.
''' The message is sent to a window after the <c>SetWindowLong</c> function has changed one or more of the window's styles.
''' The message is sent to a window when the <c>SetWindowLong</c> function is about to change one or more of the |