xingkongtianyu 发表于 2020-1-22 18:19

一行代码去掉某界面软件弹窗

一个强大的界面库,去掉试用弹窗:
使用的是.net hook方法:
使用代码:

```csharp
using System;
using System.Windows.Forms;

namespace AlexDevexpressToolTest
{
    static class Program
    {
      /// <summary>
      /// The main entry point for the application.
      /// </summary>
      
      static void Main()
      {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            //Alex.DevexpressTools.Hit.Init();
            Application.Run(new Form1());
      }
    }
}

```
工具方法:
```csharp
using DotNetDetour;

namespace Alex.DevexpressTools
{
        public class Hit
        {
                public static void Init()
                {
                        MethodHook.Install();
                }
        }

        public class Utils : IMethodHook
        {
                #region 去掉弹窗
               
                public static bool ShouldShowAbout()
                {
                        return false;
                }
               
               
                public static bool ShouldShowAbout_Original()
                {
                        return false;
                }
                #endregion
        }
}

```

wtujoxk 发表于 2020-1-22 19:49

梦想的咸鱼 发表于 2020-1-22 19:37
说的太清楚,所以不知道咋用

一个界面库,正常使用会有弹窗,使用hook在弹窗之前把弹窗去掉!

xingkongtianyu 发表于 2020-1-23 20:41

wtujoxk 发表于 2020-1-22 19:45
弹窗是去掉了,请问一下试用的有没有功能的限制呢?

基本没有功能限制,有试用期限。

hua3354 发表于 2020-1-22 19:32

电脑用,还是手机app用

梦想的咸鱼 发表于 2020-1-22 19:37

说的太清楚,所以不知道咋用{:1_886:}

wtujoxk 发表于 2020-1-22 19:45

弹窗是去掉了,请问一下试用的有没有功能的限制呢?

xmtt2008 发表于 2020-1-22 20:42

真心不知道怎么用!!

软件学习者007 发表于 2020-1-22 21:10

是很好,但是太复杂了。

皈依一 发表于 2020-1-22 21:40

感谢楼主的分享精神

ciker_li 发表于 2020-1-22 23:06

.NET没接触过

xingkongtianyu 发表于 2020-1-23 20:38

这个没加密,hook只是一个思路,pj涉及版权,你懂的!{:1_918:}
页: [1] 2
查看完整版本: 一行代码去掉某界面软件弹窗