一行代码去掉某界面软件弹窗
一个强大的界面库,去掉试用弹窗:使用的是.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
}
}
```
梦想的咸鱼 发表于 2020-1-22 19:37
说的太清楚,所以不知道咋用
一个界面库,正常使用会有弹窗,使用hook在弹窗之前把弹窗去掉! wtujoxk 发表于 2020-1-22 19:45
弹窗是去掉了,请问一下试用的有没有功能的限制呢?
基本没有功能限制,有试用期限。 电脑用,还是手机app用 说的太清楚,所以不知道咋用{:1_886:} 弹窗是去掉了,请问一下试用的有没有功能的限制呢? 真心不知道怎么用!! 是很好,但是太复杂了。 感谢楼主的分享精神 .NET没接触过 这个没加密,hook只是一个思路,pj涉及版权,你懂的!{:1_918:}
页:
[1]
2