Hello,
I am using XamOutlookCalendarView and I would like to know if I can disable navigation using Keyboard Arrows? Or if I can get the preview click event.
Thanks,
Fernando
Hello Fernando,
Thank you for your feedback. I am glad that you resolved your issue and I believe that other community members may benefit from this as well.
Thanks again.
Hello Stefan,
Thank you for your reply. I have implemented as you have suggested and it is working.
Best regards,
I am just checking the progress of this issue and was wondering if you managed to achieve your goal or if you need any further assistance on the matter.
Thank you for your post. I have been looking into it and I suggest you handle the XamOutlookCalendarView’s PreviewKeyDown event and set the e.Handle property to true if the arrows are pressed like this:
if (e.Key == Key.Left || e.Key == Key.Right) { e.Handled = true; }
Please let me know if this helps you or you need further assistance on this matter.
Looking forward for your reply.