📄 outlookbarpaneevents_sinkhelper.cs
字号:
namespace Microsoft.Office.Interop.Outlook
{
using System;
using System.Runtime.InteropServices;
[ClassInterface(ClassInterfaceType.None)]
public sealed class OutlookBarPaneEvents_SinkHelper : OutlookBarPaneEvents
{
public OutlookBarPaneEvents_BeforeGroupSwitchEventHandler m_BeforeGroupSwitchDelegate = null;
public OutlookBarPaneEvents_BeforeNavigateEventHandler m_BeforeNavigateDelegate = null;
public int m_dwCookie = 0;
internal OutlookBarPaneEvents_SinkHelper()
{
}
public override void BeforeGroupSwitch(OutlookBarGroup group1, ref bool flagRef1)
{
if (this.m_BeforeGroupSwitchDelegate != null)
{
this.m_BeforeGroupSwitchDelegate(group1, ref flagRef1);
}
}
public override void BeforeNavigate(OutlookBarShortcut shortcut1, ref bool flagRef1)
{
if (this.m_BeforeNavigateDelegate != null)
{
this.m_BeforeNavigateDelegate(shortcut1, ref flagRef1);
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -