• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C# GWL类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C#中GWL的典型用法代码示例。如果您正苦于以下问题:C# GWL类的具体用法?C# GWL怎么用?C# GWL使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



GWL类属于命名空间,在下文中一共展示了GWL类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。

示例1: GetWindowLongPtr

 internal static IntPtr GetWindowLongPtr(HandleRef hWnd, GWL nIndex)
 {
     IntPtr zero = IntPtr.Zero;
     int num = 0;
     SetLastError(0);
     if (IntPtr.Size == 4)
     {
         int num2 = IntGetWindowLong(hWnd, (int)nIndex);
         num = Marshal.GetLastWin32Error();
         zero = new IntPtr(num2);
     }
     else
     {
         zero = IntGetWindowLongPtr(hWnd, (int)nIndex);
         num = Marshal.GetLastWin32Error();
     }
     if (zero == IntPtr.Zero)
     {
     }
     return zero;
 }
开发者ID:jogibear9988,项目名称:customfiledialog-,代码行数:21,代码来源:NativeMethods.cs


示例2: GetWindowLongPtr32

 private static extern int GetWindowLongPtr32(IntPtr hWnd, GWL nIndex);
开发者ID:AlertProject,项目名称:Text-processing-bundle,代码行数:1,代码来源:NativeMethods.cs


示例3: SetWindowLongPtr32

 private static extern int SetWindowLongPtr32(IntPtr hWnd, GWL nIndex, int dwNewLong);
开发者ID:AlertProject,项目名称:Text-processing-bundle,代码行数:1,代码来源:NativeMethods.cs


示例4: GetWindowLongPtr

 public static IntPtr GetWindowLongPtr(IntPtr hwnd, GWL nIndex)
 {
     IntPtr ret = IntPtr.Zero;
     if (8 == IntPtr.Size)
     {
         ret = NativeMethodsSetLastError.GetWindowLongPtr(hwnd, (int)nIndex);
     }
     else
     {
         ret = new IntPtr(NativeMethodsSetLastError.GetWindowLong(hwnd, (int)nIndex));
     }
     if (IntPtr.Zero == ret)
     {
         throw new Win32Exception();
     }
     return ret;
 }
开发者ID:JianwenSun,项目名称:cc,代码行数:17,代码来源:NativeMethods.cs


示例5: GetWindowLongPtr

 public static IntPtr GetWindowLongPtr(IntPtr hwnd, GWL nIndex)
 {
     IntPtr ret = IntPtr.Zero;
     if (8 == IntPtr.Size)
     {
         ret = GetWindowLongPtr64(hwnd, nIndex);
     }
     else
     {
         ret = new IntPtr(GetWindowLongPtr32(hwnd, nIndex));
     }
     if (IntPtr.Zero == ret)
     {
         throw new Win32Exception();
     }
     return ret;
 }
开发者ID:AlertProject,项目名称:Text-processing-bundle,代码行数:17,代码来源:NativeMethods.cs


示例6: GetWindowLongPtr

 /// <summary>
 /// Gets a window long pointer.
 /// </summary>
 /// <param name="hWnd">The window handle.</param>
 /// <param name="nIndex">Index of the data to retreive.</param>
 /// <returns>IntPtr of retreived data.</returns>
 public static IntPtr GetWindowLongPtr(IntPtr hWnd, GWL nIndex)
 {
   if (IntPtr.Size == 8)
     return GetWindowLongPtr64(hWnd, nIndex);
   else
     return GetWindowLongPtr32(hWnd, nIndex);
 }
开发者ID:Azzuro,项目名称:IR-Server-Suite,代码行数:13,代码来源:Win32.cs


示例7: GetWindowLong

 /// <summary>
 ///
 /// </summary>
 /// <param name="hwnd"></param>
 /// <param name="index"></param>
 /// <returns></returns>
 public static int GetWindowLong(IntPtr hwnd, GWL index)
 {
     return NativeMethods.GetWindowLong(hwnd, index);
 }
开发者ID:usausa,项目名称:Smart-Net-CE,代码行数:10,代码来源:Win32Window.cs


示例8: SetWindowLong

 public static extern int SetWindowLong(HWND hwnd, GWL nIndex, int dwNewLong);
开发者ID:GoldRenard,项目名称:DMOAdvancedLauncher,代码行数:1,代码来源:NativeMethods.cs


示例9: SetWindowLongPtr

 public static IntPtr SetWindowLongPtr(HWND hwnd, GWL nIndex, IntPtr dwNewLong)
 {
     if (IntPtr.Size == 4) {
         // The SetWindowLongPtr entrypoint may not exist on 32-bit
         // OSes, so use the legacy SetWindowLong function instead.
         return new IntPtr(SetWindowLong(hwnd, nIndex, dwNewLong.ToInt32()));
     } else {
         return _SetWindowLongPtr(hwnd, nIndex, dwNewLong);
     }
 }
开发者ID:GoldRenard,项目名称:DMOAdvancedLauncher,代码行数:10,代码来源:NativeMethods.cs


示例10: GetWindowLong

 public static extern int GetWindowLong(HWND hwnd, GWL nIndex);
开发者ID:GoldRenard,项目名称:DMOAdvancedLauncher,代码行数:1,代码来源:NativeMethods.cs


示例11: GetWindowLongPtr

 public static IntPtr GetWindowLongPtr(HWND hwnd, GWL nIndex)
 {
     if (IntPtr.Size == 4) {
         // The SetWindowLongPtr entrypoint may not exist on 32-bit
         // OSes, so use the legacy SetWindowLong function instead.
         return new IntPtr(GetWindowLong(hwnd, nIndex));
     } else {
         return _GetWindowLongPtr(hwnd, nIndex);
     }
 }
开发者ID:GoldRenard,项目名称:DMOAdvancedLauncher,代码行数:10,代码来源:NativeMethods.cs


示例12: SetWindowLong

 internal static extern uint SetWindowLong(IntPtr hwnd, GWL nIndex, uint dwNewLong);
开发者ID:wilson0x4d,项目名称:Mubox,代码行数:1,代码来源:WinAPI.cs


示例13: SetWindowLong

 public static extern int SetWindowLong(IntPtr hWnd, GWL nIndex, WindowStylesEx dwNewLong);
开发者ID:squaredinfinity,项目名称:Foundation,代码行数:1,代码来源:user32.externs.cs


示例14: _GetWindowLongPtr

 private static extern IntPtr _GetWindowLongPtr(HWND hwnd, GWL nIndex);
开发者ID:GoldRenard,项目名称:DMOAdvancedLauncher,代码行数:1,代码来源:NativeMethods.cs


示例15: GetWindowLong

 public static extern WindowStylesEx GetWindowLong(IntPtr hwnd, GWL index);
开发者ID:squaredinfinity,项目名称:Foundation,代码行数:1,代码来源:user32.externs.cs


示例16: _SetWindowLongPtr

 private static extern IntPtr _SetWindowLongPtr(HWND hwnd, GWL nIndex, IntPtr dwNewLong);
开发者ID:GoldRenard,项目名称:DMOAdvancedLauncher,代码行数:1,代码来源:NativeMethods.cs


示例17: SetWindowLong

 /// <summary>
 ///
 /// </summary>
 /// <param name="hwnd"></param>
 /// <param name="index"></param>
 /// <param name="nValue"></param>
 public static void SetWindowLong(IntPtr hwnd, GWL index, int nValue)
 {
     NativeMethods.SetWindowLong(hwnd, index, nValue);
 }
开发者ID:usausa,项目名称:Smart-Net-CE,代码行数:10,代码来源:Win32Window.cs


示例18: SetWindowLong

 public static extern int SetWindowLong(IntPtr hWnd, GWL nIndex, WS_EX dsNewLong);
开发者ID:dasnod,项目名称:AssaultCube_Esp,代码行数:1,代码来源:User32Wrappers.cs


示例19: GetWindowLongPtr

 public static IntPtr GetWindowLongPtr(IntPtr hwnd, GWL nIndex)
 {
     if (8 == IntPtr.Size)
     {
         return GetWindowLongPtr64(hwnd, nIndex);
     }
     return GetWindowLongPtr32(hwnd, nIndex);
 }
开发者ID:Kayomani,项目名称:FAP,代码行数:8,代码来源:NativeMethods.cs


示例20: GetWindowLong

 internal static extern WS GetWindowLong(IntPtr hWnd, GWL nIndex);
开发者ID:baSSiLL,项目名称:Fluent.Ribbon,代码行数:1,代码来源:NativeMethods.cs



注:本文中的GWL类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# GZipStream类代码示例发布时间:2022-05-24
下一篇:
C# GUITexture类代码示例发布时间:2022-05-24
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap