| Class | Description |
 | AutoUploadOptionToStringConverter |
Converts an AutoUploadOption enumeration value to a string.
|
 | AutoUploadTimeUnitToStringConverter |
Converts a AutoUploadTimeUnit enumeration value to a string.
|
 | BitmapToBitmapSourceConverter |
Converts a System.Drawing.Bitmap into a
System.Windows.Media.Imaging.BitmapSource.
Internally it uses a cache of the resulting BitmapSource so that for any
given Bitmap object it creates a single BitmapSource object. ClearCache
should be called to empty the (static) cache when it is no longer needed.
|
 | BooleanToEnabledStringConverter |
Converts a boolean value to an 'Enabled'/'Disabled' string.
|
 | BooleanToNotBooleanConverter |
Inverts the value of a boolean.
|
 | BooleanToOnOffStringConverter |
Converts a boolean value to a string, 'On' for true or 'Off' for false.
|
 | BooleanToVisibileHiddenConverter |
Converts a boolean value to a Visibility value of either Visible or Hidden
(for true/false, respectively).
|
 | BooleanToVisibleCollapsedConverter |
Converts a boolean value to a Visibility value of either Visible or Collapsed
(for true/false, respectively).
|
 | CompositeValueConverter |
CompositeValueConverter is a (virtual) value converter that aggregates
multiple value converters together into a single converter. This allows
multiple value converters to be chained together yet allowing binding in
XAML by providing a single value converter.
Value converters are added to the Converters property collection.
Converters are evaluation based on the order in which they were added to
the collection. When the Convert method is called, the first converter in
the collection is called first and the last converter in the collection is
called last. When the ConvertBack method is called, the reverse occurs.
NOTE: All value converters added to the collection MUST be decorated with
the [ValueConversion] attribute, otherwise an exception will be thrown.
CompositeValueConverter may be declared directly in XAML (thanks to the
ContentProperty attribute, below) as follows:
|
 | CoordinateDisplayFormatToStringConverter |
Converts a CoordinateDisplayFormat enumeration value to a string.
|
 | CrewMemberIsActiveToImageSourceConverter |
Converts a boolean--representing the CrewMemberFeature.IsActive property--
into an ImageSource.
|
 | DateRangeToStringConverter |
Converts a DateCondition.DateRange enumeration to a string.
|
 | DateTimeToVisibilityHiddenConverter |
Converts a DateTime value to a Visibility value of either Visible or Hidden
if DateTime == new DateTime(0), hide it
otherwise, show it.
(for true/false, respectively).
|
 | DistanceToStringConverter |
A multi-converter that converts a distance (double) and the unit the
distance is in (Unit) into a user-friendly string, using the current
locale. E.g., "5 miles" or "5 kilometers".
|
 | DoubleToDistanceLevelConverter |
Converts a map distance value (double) to an integral level value (even
though it is a double). This is so we can bind a slider control to a
distance property and use a set of predefined levels as the slider ticks.
|
 | DoubleToHalveDoubleConverter |
Converts a double value into half its value (i.e., divides by 2).
|
 | DoubleToNegativeConverter |
Negates a double value by multiplying it by negative one (-1).
|
 | EditStateToStringConverter |
Converts an EditState enumeration value to a string.
|
 | EnumToBooleanConverter |
Converts an enumeration value to a boolean by comparing the enumeration
value to a specific value (i.e, the 'parameter' parameter). When using
this converter you must use the ConverterParameter attribute and pass in
the expected enumeration value.
|
 | FeatureAttributeToTextColorConverter |
Converts a FeatureAttribute into a brush.
|
 | FeatureTypeToStringConverter |
Converts a FeatureType to a string returning the Name property
|
 | FolderDepthToMarginConverter |
FolderDepthToMarginConverter class
|
 | GpsElevationConverter |
Converts a Gps elevation into a string with unit.
|
 | GpsFixStatusToStringConverter |
Converts a GpsFixStatus to a string.
|
 | GpsQualityToBackgroundBrushConverter |
Converts a GPS quality (bool) value to a background brush.
|
 | GpsQualityToForegroundBrushConverter |
Converts a GPS quality (bool) value to a foreground brush.
|
 | GpsSpeedConverter |
Converts a Gps speed into a string with unit.
|
 | GpsStateIsConnectedConverter |
Converts a GpsConnectionState into a boolean. Returns true if the state
is Connected; otherwise, false.
|
 | GpsStateIsConnectingConverter |
Converts a GpsConnectionState into a boolean. Returns true if the state
is Connecting; otherwise, false.
|
 | GpsStateIsDisconnectedConverter |
Converts a GpsConnectionState into a boolean. Returns true if the state
is Disconnected; otherwise, false.
|
 | GpsStateIsDisconnectedOrConnectingConverter |
Converts a GpsConnectionState into a boolean. Returns true if the state
is Disconnected or Connecting; otherwise, false.
|
 | GpsStateIsDisconnectingConverter |
Converts a GpsConnectionState into a boolean. Returns true if the state
is Disconnecting; otherwise, false.
|
 | GpsStateToBackgroundConverter |
Converts a GpsConnectionState enumeration value into a Brush.
|
 | GpsStateToStringConverter |
Converts a GpsConnectionState enumeration value into a string.
|
 | IconToImageSourceConverter |
Converts a System.Drawing.Icon into a
System.Windows.Media.Imaging.ImageSource.
|
 | IsCurrentProjectToBooleanConverter |
Converts a ProjectFile into a boolean, returning true if the ProjectFile
is the same project currently open (i.e., MobileApplication.Current.Project).
|
 | IsGreaterThanZeroConverter |
Converts an integer value into a boolean, returning true if the value is
greater than zero, otherwise false.
|
 | IsNullToBooleanConverter |
Converts an object reference to a boolean, returning true if it is null
or System.DBNull.Value; otherwise, false.
|
 | IsVisibleAtCurrentScaleConverter |
Returns True if the layer is visible at the current map display scale
|
 | LateralOffsetDirectionToStringConverter |
Converts a LateralOffsetDirection enumeration value into a string.
|
 | NonEmptyStringToVisibilityConverter |
Converts a string into a Visibility value, returning Collapsed or
Hidden if the string is null or empty; otherwise, Visible. By default,
Collapsed will be returned if the string is null or empty, but if a
string parameter may be passed to the converter--either "Collapsed" or
"Hidden"--then that value will be returned instead.
|
 | ObjectReferenceEqualsToBooleanConverter |
Converts an object to a boolean by comparing the object reference to
another object reference (passed as the converter parameter).
|
 | OpacitySettingsToOpacityMultiConverter |
A multi-converter that converts an opacity value (double) and a boolean
into a resulting opacity value (double). If the boolean is false then 100
is returned; otherwise, the original input value is returned.
|
 | PanModeToStringConverter |
Converts a PanMode enumeration value to a string.
|
 | PdopToStringConverter |
Converts a (double) PDOP value into a descriptive string of the format
"value (description)". E.g., "6.0 (Moderate)".
|
 | ReverseFlowDirection |
Reverses the value of the FlowDirection. Returns RightToLeft if the
value is LeftToRight; returns LeftToRight if the value is RightToLeft.
|
 | SearchAreaToTextConverter |
Converts a SearchArea enumeration to a string.
|
 | SecondsToStringConverter |
Converts an integer value representing time in seconds into a
user-friendly string, like "10 minutes" or "1 hour".
|
 | SnappingUnitHelperToPluralStringConverter |
Converts a Unit into a string describing a unit value of more than one.
|
 | StringToVisibilityConverter |
Converts a string into a Visibility value, returning Collapsed or
Hidden if the string is null or empty; otherwise, Visible. By default,
Collapsed will be returned if the string is null or empty, but if a
string parameter may be passed to the converter--either "Collapsed" or
"Hidden"--then that value will be returned instead.
|
 | TaskNoteToAbbreviatedStringConverter |
Converts a string--representing the Task.Note property--into an string
with a maximum of 2 characters. Any string greater than 2 characters
will return an asterisk (*).
|
 | UnitSystemToStringConverter |
Converts a UnitSystem enumeration value to a string.
|
 | UnitToAreaStringConverter |
Converts a Unit into a string describing an area unit.
|
 | UnitToPluralStringConverter |
Converts a Unit into a string describing a unit value of more than one.
|
 | UnitToSingularStringConverter |
Converts a Unit into a string describing a single unit value.
|
 | ValidationErrorsToStringConverter |
Converts a collection of validation errors (e.g., the Validation.Errors
attached property) to a string.
|
 | ZoomModeToStringConverter |
Converts a ZoomMode enumeration value to a string.
|