Click here to Skip to main content
15,892,927 members
Articles / Desktop Programming / WPF

Improving WPF Mouse Wheel Processing

Rate me:
Please Sign up or sign in to vote.
4.91/5 (29 votes)
11 Jun 2016MIT16 min read 94.2K   3.8K   52  
How to quickly improve your WPF application to give your users a pleasant mouse wheel experience
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Windows.Controls;
using Logitech.ComponentModel;

namespace Logitech.WpfMouseWheel.ViewModels
{
  public class ScrollOptions : ObservableObject
  {
    #region Fields
    private readonly ScrollOrientationOptions _optionsY;
    private readonly ScrollOrientationOptions _optionsX;
    #endregion

    #region Initialization
    public ScrollOptions(MouseWheelOptions parent)
    {
      Parent = parent;
      _optionsY = new ScrollOrientationOptions(this, Orientation.Vertical);
      _optionsX = new ScrollOrientationOptions(this, Orientation.Horizontal);
      parent.PropertyChanged += OnParentPropertyChanged;
    }
    #endregion

    #region Queries
    public ScrollOrientationOptions Y { get { return _optionsY; } }
    public ScrollOrientationOptions X { get { return _optionsX; } }
    #endregion

    #region Properties
    public MouseWheelOptions Parent { get; private set; }
    public bool            Enhanced { get { return Parent.Enhanced; } }
    #endregion

    #region Helpers
    void OnParentPropertyChanged(object sender, PropertyChangedEventArgs e)
    {
      if (e.PropertyName == "Enhanced")
        OnPropertyChanged("Enhanced");
    }
    #endregion
  }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The MIT License


Written By
Software Developer (Senior)
Switzerland Switzerland
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions