WPF - Tips & Tricks (June 2020)

WPF Team Blog
24 June 2020

Here is this month’s edition of our WPF Tips & Tricks blog post. Hopefully you’ll find the following technical support tickets of value in your current WPF project.

We also created a new example that demonstrates how to create a real-time chart and compiled a KB article describing the multi-select capabilities of our WPF Data Editors.

Should you have any questions, feel free to comment below.

KB ARTICLE:

EXAMPLE:

TICKETS:

WPF Data Grid

WPF Editors

WPF Docking

WPF Charting and Maps

WPF Ribbon & Bars

WPF Scheduler

Other Controls

  • How to enable the MouseWheel event in the Adorner Control when DX themes are used (T895687)

    We patch ScrollViewer's default scrolling logic in our themes. With this, we implemented horizontal scrolling via the mouse, supported touch mouses, etc. To keep using default scrolling logic, set the ScrollBarExtensions.HandlesDefaultMouseScrolling attached property to False:

    
    xmlns:dx="http://schemas.devexpress.com/winfx/2008/xaml/core"
    <UserControl.Resources>
        <Style TargetType="ScrollViewer">
            <Setter Property="dx:ScrollBarExtensions.HandlesDefaultMouseScrolling"
                    Value="False"/>
        </Style>
    </UserControl.Resources>
        

If you’ve come across a WPF-related support ticket you’d like to share with the rest of the DevExpress community, feel free to share the link in the comments section.

Free DevExpress Products - Get Your Copy Today

The following free DevExpress product offers remain available. Should you have any questions about the free offers below, please submit a ticket via the DevExpress Support Center at your convenience. We'll be happy to follow-up.
No Comments

Please login or register to post comments.