我试图找出提到的2个接口中的哪个由OnPointerPressed实现。
struct App : implements<App, IFrameworkViewSource, IFrameworkView>
{
void OnPointerPressed(IInspectable const &, PointerEventArgs const & args)
{
}
}
OnPointerPressed
是Control
类的一部分
我看不到Control
,App
,IFrameworkViewSource
或IFrameworkView
之间的关系。
由于WinRT UWP使用许多接口,如果示例代码指示添加功能时正在实现哪个接口,则可能会有所帮助。 如果这是样本的重点,将会严重帮助学习曲线。否则,您必须深入研究接口才能理解示例代码。