我已经创建了一个 Windows8 空白 xaml 应用程序。现在我想将此应用程序作为共享目标。我已按照以下链接中的说明进行操作,并且能够将其作为目标应用程序。
http://msdn.microsoft.com/en-us/library/windows/apps/xaml/Hh973053
但是我在空白的 xaml 应用程序中在哪里添加以下方法(OnShareTargetActivated)?当我在 mainpage.xaml.cs 中手动添加此方法时,它会显示错误“
“Project.MainPage.OnShareTargetActivated(Windows.ApplicationModel.Activation.ShareTargetActivatedEventArgs)' 是密封类中的新虚拟成员”
“Project.MainPage.OnShareTargetActivated(Windows.ApplicationModel.Activation.ShareTargetActivatedEventArgs)”:找不到合适的方法来覆盖“
protected override async void OnShareTargetActivated(ShareTargetActivatedEventArgs args)
{
// Code to handle activation goes here.
}