タッチ スクリーンでいくつかのテストを開始していますが、UIControl の "IsManipulationEnabled" 属性が true に設定されている場合、プレス アンド ホールド ジェスチャ (WIN7) によって発生した MouseRightClick イベントがキャプチャされないことがわかりました。私は何か間違ったことをしていますか?
public MainWindow()
{
InitializeComponent();
WC_Rectangle.IsManipulationEnabled = true;
WC_Rectangle.MouseRightButtonUp += new MouseButtonEventHandler(WC_Rectangle_MouseRightButtonUp);
}
void WC_Rectangle_MouseRightButtonUp(object sender, MouseButtonEventArgs e)
{
System.Diagnostics.Debug.WriteLine("RIGHT CLICK : " + sender.ToString());
}