New to Telerik UI for WPFStart a free 30-day trial

Arguments of the event which occurs when map source is changed in the TilePresenter.

Definition

Namespace:Telerik.Windows.Controls.Map

Assembly:Telerik.Windows.Controls.DataVisualization.dll

Syntax:

C#
public class SourceChangedEventArgs : EventArgs

Inheritance: objectEventArgsSourceChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the SourceChangedEventArgs class.

C#
public SourceChangedEventArgs(IMapSource oldSource, UIElement oldElement, IMapSource newSource, UIElement newElement)
Parameters:oldSourceIMapSource

Old map source.

oldElementUIElement

Old UI element.

newSourceIMapSource

New map source.

newElementUIElement

New UI element.

Properties

NewElement

UIElement

Gets new UI element.

C#
public UIElement NewElement { get; }

Gets new map source.

C#
public IMapSource NewSource { get; }

OldElement

UIElement

Gets old UI element.

C#
public UIElement OldElement { get; }

Gets old map source.

C#
public IMapSource OldSource { get; }