MapCustomElement.ContentProperty Field
Identifies the MapCustomElement.Content dependency property.
Namespace: DevExpress.Xpf.Map
Assembly: DevExpress.Xpf.Map.v24.1.dll
NuGet Package: DevExpress.Wpf.Map
Declaration
Field Value
Type | Description |
---|---|
DependencyProperty | A dependency property identifier. |
Example
To customize MapCustomElement, it contains the following properties.
- MapCustomElement.Template - allows customizing the appearance and behavior of map custom element.
- MapCustomElement.ContentTemplate - allows customizing the appearance and behavior of an element’s content.
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