Skip to main content
All docs
V25.1
  • DXImageExtension.Image Property

    Gets or sets the name of a displayed .png image.

    Namespace: DevExpress.Xpf.Core

    Assembly: DevExpress.Xpf.Core.v25.1.dll

    NuGet Package: DevExpress.Wpf.Core

    Declaration

    public DXImageInfo Image { get; set; }

    Property Value

    Type Description
    DevExpress.Xpf.Core.DXImageInfo

    The name of an image in the DevExpress.Images.v25.1 assembly.

    Remarks

    Use the DevExpress Image Picker to see images included in the DevExpress.Images.v25.1 assembly.

    The following code sample uses Image controls to display images from the DevExpress.Images.v25.1 assembly:

    <Window ...
        xmlns:dx="http://schemas.devexpress.com/winfx/2008/xaml/core">
        <Grid>
            <Image Source="{dx:DXImage Image='Apply_32x32.png'}" Height="32"/>
        </Grid>
    </Window>
    

    The following code snippets (auto-collected from DevExpress Examples) contain references to the Image property.

    Note

    The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

    See Also