⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 explorerevents_sinkhelper.cs

📁 破解的飞信源代码
💻 CS
字号:
namespace Microsoft.Office.Interop.Outlook
{
    using System;
    using System.Runtime.InteropServices;

    [ClassInterface(ClassInterfaceType.None)]
    public sealed class ExplorerEvents_SinkHelper : ExplorerEvents
    {
        public ExplorerEvents_ActivateEventHandler m_ActivateDelegate = null;
        public ExplorerEvents_BeforeFolderSwitchEventHandler m_BeforeFolderSwitchDelegate = null;
        public ExplorerEvents_BeforeViewSwitchEventHandler m_BeforeViewSwitchDelegate = null;
        public ExplorerEvents_CloseEventHandler m_CloseDelegate = null;
        public ExplorerEvents_DeactivateEventHandler m_DeactivateDelegate = null;
        public int m_dwCookie = 0;
        public ExplorerEvents_FolderSwitchEventHandler m_FolderSwitchDelegate = null;
        public ExplorerEvents_SelectionChangeEventHandler m_SelectionChangeDelegate = null;
        public ExplorerEvents_ViewSwitchEventHandler m_ViewSwitchDelegate = null;

        internal ExplorerEvents_SinkHelper()
        {
        }

        public override void Activate()
        {
            if (this.m_ActivateDelegate != null)
            {
                this.m_ActivateDelegate();
            }
        }

        public override void BeforeFolderSwitch(object obj1, ref bool flagRef1)
        {
            if (this.m_BeforeFolderSwitchDelegate != null)
            {
                this.m_BeforeFolderSwitchDelegate(obj1, ref flagRef1);
            }
        }

        public override void BeforeViewSwitch(object obj1, ref bool flagRef1)
        {
            if (this.m_BeforeViewSwitchDelegate != null)
            {
                this.m_BeforeViewSwitchDelegate(obj1, ref flagRef1);
            }
        }

        public override void Close()
        {
            if (this.m_CloseDelegate != null)
            {
                this.m_CloseDelegate();
            }
        }

        public override void Deactivate()
        {
            if (this.m_DeactivateDelegate != null)
            {
                this.m_DeactivateDelegate();
            }
        }

        public override void FolderSwitch()
        {
            if (this.m_FolderSwitchDelegate != null)
            {
                this.m_FolderSwitchDelegate();
            }
        }

        public override void SelectionChange()
        {
            if (this.m_SelectionChangeDelegate != null)
            {
                this.m_SelectionChangeDelegate();
            }
        }

        public override void ViewSwitch()
        {
            if (this.m_ViewSwitchDelegate != null)
            {
                this.m_ViewSwitchDelegate();
            }
        }
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -