Skip to main content

MapCustomElement.ContentProperty Field

Identifies the MapCustomElement.Content dependency property.

Namespace: DevExpress.Xpf.Map

Assembly: DevExpress.Xpf.Map.v23.2.dll

NuGet Package: DevExpress.Wpf.Map

Declaration

public static readonly DependencyProperty ContentProperty

Field Value

Type Description
DependencyProperty

A dependency property identifier.

Example

To customize MapCustomElement, it contains the following properties.

using System;
using System.Windows;

namespace MapCustomElement {
    public partial class MainWindow : Window {
        public MainWindow() {
            InitializeComponent();
        }
    }

    class ShipwreckInformation {
        public Uri ImageUri { get; set; }
        public String Name { get; set; }
        public Int32 Year { get; set; }
        public String Description { get; set; }
    }
}
See Also