📄 inspectorevents_sinkhelper.cs
字号:
namespace Microsoft.Office.Interop.Outlook
{
using System;
using System.Runtime.InteropServices;
[ClassInterface(ClassInterfaceType.None)]
public sealed class InspectorEvents_SinkHelper : InspectorEvents
{
public InspectorEvents_ActivateEventHandler m_ActivateDelegate = null;
public InspectorEvents_CloseEventHandler m_CloseDelegate = null;
public InspectorEvents_DeactivateEventHandler m_DeactivateDelegate = null;
public int m_dwCookie = 0;
internal InspectorEvents_SinkHelper()
{
}
public override void Activate()
{
if (this.m_ActivateDelegate != null)
{
this.m_ActivateDelegate();
}
}
public override void Close()
{
if (this.m_CloseDelegate != null)
{
this.m_CloseDelegate();
}
}
public override void Deactivate()
{
if (this.m_DeactivateDelegate != null)
{
this.m_DeactivateDelegate();
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -