Quantcast
Channel: Developer Express Inc.
Viewing all articles
Browse latest Browse all 2370

WPF - Tips & Tricks (June 2020)

$
0
0

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.


Viewing all articles
Browse latest Browse all 2370

Trending Articles