Difference between revisions of "Converters In Xamarin"
Line 3: | Line 3: | ||
= List of Available Converters = | = List of Available Converters = | ||
− | + | The following list contains all currently available converters for UBIK Xamarin customizing. | |
{| class="wikitable sortable" | {| class="wikitable sortable" | ||
|- | |- |
Revision as of 07:19, 7 August 2019
This page lists all currently available converters for customizing Xamarin XAML. Examples on how to use them can be found below. If you are looking for the Also, this page and the listed converters are subject to change!
List of Available Converters
The following list contains all currently available converters for UBIK Xamarin customizing.
Converter | 2-Way | Description |
---|---|---|
BooleanConverter | ✓ | Interprets the boolean value and returns it. If the value cannot be interpreted, false is returned. |
BooleanInvertConverter | ✓ | Interprets and converts a boolean into its inverted value. If the value cannot be interpreted, false is returned. |
BooleanToFontAttributeConverter | ✗ | Converts a boolean into a font attribute value. In detail, if the value is true, the parameter is interpreted (Bold, Italic, None) and returned. The default returned font-attribute is None. |
ByteToImageSourceValueConverter | ✗ | Converts a byte stream value into an image source. |
ChildAreaTemplateConverter | ✗ | Returns a ChildAreaTemplate from a ContentViewModel or null if the ViewModel cannot be interpreted. |
ChildItemSelectionModeToSfListViewSelectionModeConverter | ✓ | Converts a ChildItemSelectionMode to Syncfusion's ListViewSelectionMode. Default is "Single". |
ClassificationToBoolConverter | ✗ | Returns a boolean indicating whether the given ContentViewModel is successfully classified. |
ContainsToBoolConverter | ✗ | Checks if the delivered value is contained within a collection of values (delivered in the parameter, seperated with | ). If the value is contained, true will be returned, else false. The functionality is similar to the ContainsToVisibilityConverter in the WinX project.
|
ContainsToInvertedBoolConverter | ✗ | Same as the ContainsToBoolConverter, but with inverted output. The functionality is similar to the ContainsToVisibilityConverter in the WinX project. |
ContentAreaTeamplateConverter | ✗ | This converter is not yet finished and just returns the UBIKContentArea if the value is a ContentViewModel. |
DateTimeOffsetToDateConverter | ✓ | Converts a DateTimeOffset to the correct DateTime. If the value cannot be interpreted, a new DateTime, generated from the device's current time (DateTime.Now ) is returned.
|
DateTimeToFromNowStringConverter | ✗ | Returns a DateTime into a human-readable and easily understandable string message (the last applying one will be taken):
|
DebugConverter | ✓ | A converter returning the given value for debug reasons. |
DistanceToStringConverter | ✗ | Returns the given value interpreted as length. Values are returned in kilometers with two comma digits (e.g. 2.84km), values smaller than 1km are returned as meters and NaN will be returned as infinity. If the value cannot be interpreted, an empty string will be returned. |
EqualityToBoolConverter | ✗ | Returns true if the given value and parameter are equal to each other, false otherwise. |
EqualityToInvertedBoolConverter | ✗ | Returns true if the given value and parameter are not equal to each other, false otherwise. |
SelectionChangedEventArgsConverter | ✗ | Converts an Syncfusion ItemSelectionChangedEventArgs to a ListSelectionChangedEventArgs. The use-case of this converter is highly specific. |
FilterCriterionToValueConverter | ✓ | Converts a FilterCriterion to its value. The functionality is similar to UWP's FilterCriterionToValueConverter. |
GuidPropertyValueConverter | ✓ | Returns the first item of the parameter's Source-ViewModel that matches the given GUID value. If none is found, null is returned. |
IntToColorConverter | ✗ | Converts an integer value to a color. If the value cannot be interpreted, the converter tries to parse the parameter as a color to return it. If everything fails, transparent is returned. |
ItemCountToBoolConverter | ✗ | This converter has a property to set the boolean return value, called LesserThanReturnValue. This property-value will be returned if the given value is smaller than or equal to the threshold (parameter, defaults to 0). If the value is bigger than the threshold, the inverted LesserThanReturnValue will be returned. In any other case (like the value cannot be interpreted), false is returned, so it's a good idea to set the converter's property in a way that the return is only true if you need it. |
ItemCountToOverflowConverter | ✗ | Creates a human-readable text indicating how many items are available. The value will be interpreted as the total item count and the parameter as overflow threshold (defaults to 99). If there are more items than the overflow, the overflow value with a + sign will be returned (e.g. 99+). If not, the value itself will be returned. If everything fails, null is returned. |
NullToBoolConverter | ✓ | Null or an empty string value get converted to true, and everything else to false. |
NullToInvertedBoolConverter | ✓ | Null or an empty string value get converted to false, and everything else to true. |
PathToImageSourceValueConverter | ✗ | Reads the path provided as parameter and creates an image source from it. |
PercentageToProgressConverter | ✗ | The numeric value (int or double), interpreted as percentage from 0 to 100, get converted to a progress level (0 to 1). Values outside this range will be contained. |
PropertyNameExistsToBoolConverter | ✗ | Converts a property to a boolean statment based on its existence. If it exists, true will be returned, else false or null (if something couldn't be properly interpreted). |
PropertyNameExistsToInvertedBoolConverter | ✗ | Converts a property to a boolean statment based on its existence. If it exists, false will be returned, else true or null (if something couldn't be properly interpreted). |
RootAreaTemplateConverter | ✗ | If the provided value is not null, the UBIKRootArea template will be returned. |
SelectiveItemToValueConverter | ✓ | Converts a item of a selective list to its value. |
SelectiveListToItemsConverter | ✗ | Returns all items from a selective list. |
SfDataSourceConverter | ✗ | It's an advanced converter used for loading items and applying filters on it. It replaces to CollectionToViewConverter from the WinX.UWP project. The datasource can be directly used with a SfListView. |
StringContainsToBoolConverter | ✗ | Returns a boolean indicating whether the parameter string is included in the value string. |
StringContainsToInvertedBoolConverter | ✗ | Same as the StringContainsToBoolConverter but with inverted output. |
StringFormatConverter | ✗ | Allows the creation of a nicely formatted string message, similar to C#'s String.Format method. The value will be interpreted as the {0} element, and the parameter is the template string (e.g. The total count is: {0}! . Up to two additional parameters, named Parameter1 and Parameter2, can be defined at the converter declaration. Adding formatting options to the {0} notation is not possible.
|
ToStringFormatConverter | ✗ | Converts primitives or DateTime to string and allows the application of formatting options (as parameter). Adding a . to the end of the format-parameter allows truncation of all decimal places.
|
ToTypeConverter | ✗ | Attempts to convert value to the Type specified in parameter. |
TypeNameToBoolConverter | ✗ | Returns true if the type name of the value is present in the parameter-string (seperated by | ).
|
TypeNameToInvertedBoolConverter | ✗ | Inverted TypeNameToBoolConverter. |
ValueValidityToBoolConverter | ✗ | Returns true if the given ValueValidity has a higher importance than OK or Undefined. |
ValueValidityToInvertedBoolConverter | ✗ | Inverted ValueValidityToBoolConverter. |
DataTemplateItemTemplateSelectorConverter | ✗ | Chooses what ChildItemTemplateSelector to return. Having a parameter with the content "Small" returns the small item template selector. |
DataTemplateItemsPanelConverter | ✗ | Chooses what ItemPanelTemplate to return. Having a parameter with the content "Small" returns the small item template selector. |
Definition
In Xamarin, before converters can be used, they need to be defined in the page's Resources tag. Make sure to include the UBIK.CPL.Converters
namespace in the namespace definitions!
The following example shows how the NullToBoolConverter
can be defined:
xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:converters="clr-namespace:UBIK.CPL.Converters;assembly=UBIK.CPL">
<ContentView.Resources>
<ResourceDictionary>
<converters:NullToBoolConverter x:Key="NullToBool" />
</ResourceDictionary>
</ContentView.Resources>
<!-- Cuztomizing -->
</ContentView>
The key NullToBool makes this converter accessible from the customizing in this page.
Usage
A converter can only be used in conjunction with a {Binding}
. The following is an easy example, showing how the NullToBool converter, defined above, can be used.
If MyBindableProperty is null or an empty string, the converter will return true, making the Label visible!
Parameter
Some converters accept a ConverterParameter, that passes additional information. Closely read the description of the available converters to find out which accept or even require a parameter to work properly. In Ubik, some converters accept a string parameter, consisting of multiple individual parameters separated by |
.
An example of this behavior is the ContainsToBoolConverter, which checks if the current value is contained within a collection of values (passed as the parameter):
The label will only be visible if the MyValue property (which is expected to parse as an Integer in this example) is one of the values of the parameter.
Again, to get the converter working, don't forget to define it in the page's resources!
FallbackValue
In some rare cases, a converter might not return anything desired (like null) if some condition doesn't work out as it should (e.g. value is null). To still be able to get a usable return value, it's possible to define a FallbackValue.