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

📄 outlookbargroupsevents_sinkhelper.cs

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

    [ClassInterface(ClassInterfaceType.None)]
    public sealed class OutlookBarGroupsEvents_SinkHelper : OutlookBarGroupsEvents
    {
        public OutlookBarGroupsEvents_BeforeGroupAddEventHandler m_BeforeGroupAddDelegate = null;
        public OutlookBarGroupsEvents_BeforeGroupRemoveEventHandler m_BeforeGroupRemoveDelegate = null;
        public int m_dwCookie = 0;
        public OutlookBarGroupsEvents_GroupAddEventHandler m_GroupAddDelegate = null;

        internal OutlookBarGroupsEvents_SinkHelper()
        {
        }

        public override void BeforeGroupAdd(ref bool flagRef1)
        {
            if (this.m_BeforeGroupAddDelegate != null)
            {
                this.m_BeforeGroupAddDelegate(ref flagRef1);
            }
        }

        public override void BeforeGroupRemove(OutlookBarGroup group1, ref bool flagRef1)
        {
            if (this.m_BeforeGroupRemoveDelegate != null)
            {
                this.m_BeforeGroupRemoveDelegate(group1, ref flagRef1);
            }
        }

        public override void GroupAdd(OutlookBarGroup group1)
        {
            if (this.m_GroupAddDelegate != null)
            {
                this.m_GroupAddDelegate(group1);
            }
        }
    }
}

⌨️ 快捷键说明

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