Xamarin.mac鼠标事件在OxyPlot中不起作用

时间:2017-04-19 11:19:47

标签: c# xamarin.mac oxyplot

我将Xamarin Studio 6.3与Xamarin.Mac一起使用。我想在OzyPlot.PlotView中始终显示跟踪信息。我尝试使用PlotModel.TrackerChanged,PlotModel.MouseMove,CandleStickSeries.MouseMove和其他事件。 PlotModel.TrackerChanged从未发生过,CandleStickSeries.MouseMove仅在鼠标左键按下并移动时才会发生。 我怎样才能捕捉到事件?在GTK#中都很好。

我使用ViewController.cs的代码:

router.post('/add-to-cart', function(req, res, next) {
    Cart.findOneAndUpdate(
        { userID: req.body.userID },
        { $push: { items: { itemID: req.body.itemId, quantity: 1 } } },
        { new: true }
    )
    .exec()
    .then(function(userCart) {
        console.log("TEST: "+ JSON.stringify(userCart));
        res.send(userCart);
    })
    .catch(next);
});

0 个答案:

没有答案