我的要求是获取有关从Outlook 2007中拖动的项目的详细信息。
我使用Windows API在Outlook 2007上注册拖放事件,如下所示......
(public static extern int RegisterDragDrop(IntPtr hwnd, IOleDropTarget target);
),
并在发生拖放事件时使用IOleDropTarget
接口检索信息。
以下是我到目前为止所做的事情
IOleDropTarget接口
[ComImport, Guid("00000122-0000-0000-C000-000000000046"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IOleDropTarget
{
[PreserveSig]
int OleDragEnter([In, MarshalAs(UnmanagedType.Interface)] object pDataObj, [In, MarshalAs(UnmanagedType.U4)] int grfKeyState, [In, MarshalAs(UnmanagedType.U8)] long pt, [In, Out] ref int pdwEffect);
[PreserveSig]
int OleDragOver([In, MarshalAs(UnmanagedType.U4)] int grfKeyState, [In, MarshalAs(UnmanagedType.U8)] long pt, [In, Out] ref int pdwEffect);
[PreserveSig]
int OleDragLeave();
[PreserveSig]
int OleDrop([In, MarshalAs(UnmanagedType.Interface)] object pDataObj, [In, MarshalAs(UnmanagedType.U4)] int grfKeyState, [In, MarshalAs(UnmanagedType.U8)] long pt, [In, Out] ref int pdwEffect);
}
如果从outlook中拖动某个项目,则会触发以下方法并将所有参数传入该方法。
int IOleDropTarget.OleDragEnter(object pDataObj, int grfKeyState, long pt, ref int pdwEffect)
{
retirn 0;
}
是否可以使用pDataObj
获取有关正在拖动的项目的信息?
到目前为止,我一直试图从这个对象中获取信息,这些信息没有提供有关被拖动项目的信息。
Type myType = pDataObj.GetType();
还有其他事情可以获取我想要的信息吗?
代码示例将不胜感激
谢谢
答案 0 :(得分:1)
您需要获取正在运行的Outlook实例,然后从活动资源管理器窗口中获取Selection对象。它将包含拖动的数据。
// Check whether there is an Outlook process running.
if (Process.GetProcessesByName("OUTLOOK").Count() > 0)
{
// If so, use the GetActiveObject method to obtain the process and cast it to an Application object.
application = Marshal.GetActiveObject("Outlook.Application") as Outlook.Application;
}