我将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);
});