Skip to main content
All docs
V24.2

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ARM Support

You can build applications with DevExpress WPF components for ARM64 devices.

#Requirements

Install the Arm64 software development kit (SDK) for .NET 8 (or higher) on an ARM64 device to build and run WPF applications.

#Configure the Project

Right-click the project in the Solution Explorer and select Edit Project File.

Specify the RuntimeIdentifiers element in the PropertyGroup:

<PropertyGroup>
    <OutputType>WinExe</OutputType>
    <TargetFramework>net8.0-windows</TargetFramework>
    <UseWPF>true</UseWPF>
    <RuntimeIdentifiers>win-x64;win-arm64</RuntimeIdentifiers>
</PropertyGroup>

Build the application.

Note

You may encounter the following error when attempting to launch your application in the ARM64 environment with the attached Visual Studio debugger:

Unable to attach CoreCLR

This error does not prevent you from building your application and running the executable.