📄 explorerevents_10_sinkhelper.cs
字号:
namespace Microsoft.Office.Interop.Outlook
{
using System;
using System.Runtime.InteropServices;
[ClassInterface(ClassInterfaceType.None)]
public sealed class ExplorerEvents_10_SinkHelper : ExplorerEvents_10
{
public ExplorerEvents_10_ActivateEventHandler m_ActivateDelegate = null;
public ExplorerEvents_10_BeforeFolderSwitchEventHandler m_BeforeFolderSwitchDelegate = null;
public ExplorerEvents_10_BeforeItemCopyEventHandler m_BeforeItemCopyDelegate = null;
public ExplorerEvents_10_BeforeItemCutEventHandler m_BeforeItemCutDelegate = null;
public ExplorerEvents_10_BeforeItemPasteEventHandler m_BeforeItemPasteDelegate = null;
public ExplorerEvents_10_BeforeMaximizeEventHandler m_BeforeMaximizeDelegate = null;
public ExplorerEvents_10_BeforeMinimizeEventHandler m_BeforeMinimizeDelegate = null;
public ExplorerEvents_10_BeforeMoveEventHandler m_BeforeMoveDelegate = null;
public ExplorerEvents_10_BeforeSizeEventHandler m_BeforeSizeDelegate = null;
public ExplorerEvents_10_BeforeViewSwitchEventHandler m_BeforeViewSwitchDelegate = null;
public ExplorerEvents_10_CloseEventHandler m_CloseDelegate = null;
public ExplorerEvents_10_DeactivateEventHandler m_DeactivateDelegate = null;
public int m_dwCookie = 0;
public ExplorerEvents_10_FolderSwitchEventHandler m_FolderSwitchDelegate = null;
public ExplorerEvents_10_SelectionChangeEventHandler m_SelectionChangeDelegate = null;
public ExplorerEvents_10_ViewSwitchEventHandler m_ViewSwitchDelegate = null;
internal ExplorerEvents_10_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 BeforeItemCopy(ref bool flagRef1)
{
if (this.m_BeforeItemCopyDelegate != null)
{
this.m_BeforeItemCopyDelegate(ref flagRef1);
}
}
public override void BeforeItemCut(ref bool flagRef1)
{
if (this.m_BeforeItemCutDelegate != null)
{
this.m_BeforeItemCutDelegate(ref flagRef1);
}
}
public override void BeforeItemPaste(ref object objRef1, MAPIFolder folder1, ref bool flagRef1)
{
if (this.m_BeforeItemPasteDelegate != null)
{
this.m_BeforeItemPasteDelegate(ref objRef1, folder1, ref flagRef1);
}
}
public override void BeforeMaximize(ref bool flagRef1)
{
if (this.m_BeforeMaximizeDelegate != null)
{
this.m_BeforeMaximizeDelegate(ref flagRef1);
}
}
public override void BeforeMinimize(ref bool flagRef1)
{
if (this.m_BeforeMinimizeDelegate != null)
{
this.m_BeforeMinimizeDelegate(ref flagRef1);
}
}
public override void BeforeMove(ref bool flagRef1)
{
if (this.m_BeforeMoveDelegate != null)
{
this.m_BeforeMoveDelegate(ref flagRef1);
}
}
public override void BeforeSize(ref bool flagRef1)
{
if (this.m_BeforeSizeDelegate != null)
{
this.m_BeforeSizeDelegate(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 + -