我在Host和AddIn之间使用MAF(System.addin)和FrameworkElements。
我在adpters中使用FrameworkElementAdapters.ViewToContractAdapter和FrameworkElementAdapters.ContractToViewAdapter。
我使用带有stopwatcher的FrameworkElementAdapters.ViewToContractAdapter,并且秒的结果是1,3秒。
public INativeHandleContract GetToolBox()
{
FrameworkElement e=view.GetControl();
Stopwatch w = new Stopwatch();
w.Start();
INativeHandleContract c= FrameworkElementAdapters.ViewToContractAdapter(e);
w.Stop();
System.Console.WriteLine(w.Elapsed.TotalSeconds); ///Results is 1,3
return c;
}
是否可以缩短FrameworkElementAdapters.ViewToContractAdapter的时间?
由于