码迷,mamicode.com
首页 > 其他好文 > 详细

一行代码去掉Devexpress弹窗

时间:2020-01-22 20:18:21      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:entry   return   enable   poi   har   original   去掉   null   name   

使用的是.net hook方法:
使用代码:

using System;
using System.Windows.Forms;

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

工具方法:

using DotNetDetour;

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

    public class Utils : IMethodHook
    {
        #region 去掉弹窗
        [HookMethod("DevExpress.Utils.About.Utility", null, null)]
        public static bool ShouldShowAbout()
        {
            return false;
        }
        
        [OriginalMethod]
        public static bool ShouldShowAbout_Original()
        {
            return false;
        }
        #endregion
    }
}

一行代码去掉Devexpress弹窗

标签:entry   return   enable   poi   har   original   去掉   null   name   

原文地址:https://www.cnblogs.com/AlexanderZhao/p/12229221.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!