在我的主窗口上实施Affdex.ImageListener
时,我得到一个XamlParseException
说明
方法或操作未实现
我的MainWindow
存根实现了接口的所有方法。如果我删除接口,一切都很好。任何指示或帮助将不胜感激。代码如下。
public partial class MainWindow : Window, Affdex.ImageListener {
public MainWindow() {
InitializeComponent();
}
public void onImageCapture( Affdex.Frame frame ) {
}
public void onImageResults( Dictionary<int, Face> faces, Affdex.Frame frame ) {
}
}