SharedMauiCoreLibrary 1.1.7

dotnet add package SharedMauiCoreLibrary --version 1.1.7
NuGet\Install-Package SharedMauiCoreLibrary -Version 1.1.7
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SharedMauiCoreLibrary" Version="1.1.7" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SharedMauiCoreLibrary --version 1.1.7
#r "nuget: SharedMauiCoreLibrary, 1.1.7"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install SharedMauiCoreLibrary as a Cake Addin
#addin nuget:?package=SharedMauiCoreLibrary&version=1.1.7

// Install SharedMauiCoreLibrary as a Cake Tool
#tool nuget:?package=SharedMauiCoreLibrary&version=1.1.7

SharedMauiCoreLibrary

A shared library containing recurring features & utilities for .NET MAUI applications

Nuget

Get the latest version from nuget.org<br> NuGet NuGet NuGet

Available content

Please find a list of available content below.

Behaviors

Namespace
xmlns:behaviors="clr-namespace:AndreasReitberger.Shared.Core.Behaviors;assembly=SharedMauiCoreLibrary"
EventToCommandBehavior

This Behavior executes a Command when the specified Event is fired.

<sliders:SfSlider
    Margin="0,4"
    Minimum="0" Maximum="{Binding LimitFan}"
    StepSize="1"
    MinorTicksPerInterval="100"
    ShowLabels="True"
    >
    <sliders:SfSlider.Behaviors>
        <behaviors:EventToCommandBehavior
                EventName="ValueChangeEnd"
                Command="{Binding SetFanCommand}"
                />
    </sliders:SfSlider.Behaviors>
</sliders:SfSlider>

Converters

Namespace
xmlns:converters="clr-namespace:AndreasReitberger.Shared.Core.Converters;assembly=SharedMauiCoreLibrary"
BooleanReverseVisibilityConverter & BooleanVisibilityConverter

This Converter converts a Boolean into a reverse and non-reverse visibility (if value is true, it returns false)

<Label
    Style="{StaticResource SmallLabelStyle}"                   
    TextColor="{DynamicResource Error}"
    Text="{x:Static localization:Strings.NotAvailableDots}"
    IsVisible="{Binding HasDoubleExtruder, Converter={StaticResource BooleanReverseVisibilityConverter}}"
    />
ByteArrayToImageConverter

This Converter converts a byte[] into an Image

<Image 
    VerticalOptions="Start"
    Margin="{OnIdiom Phone='-4,0', Tablet='-62,0', Default='-4,0'}"
    Source="{Binding Thumbnail, Converter={StaticResource ByteArrayToImageConverter}}" 
    >
    <Image.Style>
        <Style TargetType="Image">
            <Setter Property="Aspect" Value="AspectFit"/>
            <Style.Triggers>
                <DataTrigger
            TargetType="Image"
            Binding="{Binding IsPortrait}"
            Value="False">
                    <Setter Property="Aspect" Value="AspectFill"/>
                </DataTrigger>
            </Style.Triggers>
        </Style>
    </Image.Style>
</Image>
ColorToBlackWhiteConverter

This Converter converts a Color into Colors.White or Colors.Black. This helps to get the accurate oreground for a colored Background.

<Border
    Background="{Binding HexCode, Converter={StaticResource StringToColorConverter}, Mode=OneWay}"
    >
    <Label 
        Text="{Binding HexCode}"
        TextColor="{Binding Source={RelativeSource AncestorType={x:Type Border}}, Path=Background, Converter={StaticResource BrushToBlackWhiteConverter}, Mode=OneWay}"
        Style="{StaticResource LabelStyle}"
        VerticalTextAlignment="Center"
        HorizontalTextAlignment="Center"
        />
  </Border>
DoubleHoursToTimeSpanConverter

This Converter converts a Double into a TimeSpan.

<Label 
    LineBreakMode="WordWrap" Margin="2,10,0,10"
    VerticalTextAlignment="Center"
    FontSize="{OnIdiom Tablet=14, Default=12}"
    >
    <Label.Style>
        <Style TargetType="Label" BasedOn="{StaticResource TitleViewHeadlineLabelStyle}">
            <Setter Property="IsVisible" Value="False"/>
            <Style.Triggers>
                <MultiTrigger
                    TargetType="Label">
                    <MultiTrigger.Conditions>
                        <BindingCondition Binding="{Binding IsPrinting, Mode=TwoWay}" Value="True"/>
                        <BindingCondition Binding="{Binding ShowRemainingPrintTimeInTitleView}" Value="True"/>
                    </MultiTrigger.Conditions>
                    <Setter Property="IsVisible" Value="True"/>
                </MultiTrigger>
            </Style.Triggers>
        </Style>
    </Label.Style>
    <Label.FormattedText>
        <FormattedString>
            <Span Text="("/>
            <Span Text="{Binding RemainingPrintTime, Converter={StaticResource DoubleHoursToTimeSpanConverter}}"/>
            <Span Text=")"/>
        </FormattedString>
    </Label.FormattedText>
</Label>
DoubleHoursToTimeSpanConverter

This Converter converts a List<string> into a single String with the defined separator char.

LongToGigaByteConverter

This Converter converts a long into a Double. The result wil be in GigaBytes.

LongToMegaByteConverter

This Converter converts a long into a Double. The result wil be in MegaBytes.

StringToColorConverter

This Converter converts a String (hex formated string) into a Color.

UnixDateToDateTimeConverter

This Converter converts a Double (UNIX based) into a DateTime.

<Label 
    LineBreakMode="WordWrap" Margin="2,10,0,10"
    VerticalTextAlignment="Center"
    FontSize="{OnIdiom Tablet=14, Default=12}"
    >
    <Label.FormattedText>
        <FormattedString>
            <Span Text="("/>
            <Span Text="{Binding CurrentDateTime, Converter={StaticResource UnixDateToDateTimeConverter}}"/>
            <Span Text=")"/>
        </FormattedString>
    </Label.FormattedText>
</Label>
UnixDoubleHoursToTimeSpanConverter

This Converter converts a Double (UNIX based) into a TimeSpan.

<Label 
    LineBreakMode="WordWrap" Margin="2,10,0,10"
    VerticalTextAlignment="Center"
    FontSize="{OnIdiom Tablet=14, Default=12}"
    >
    <Label.FormattedText>
        <FormattedString>
            <Span Text="("/>
            <Span Text="{Binding RemainingPrintTime, Converter={StaticResource UnixDoubleHoursToTimeSpanConverter}}"/>
            <Span Text=")"/>
        </FormattedString>
    </Label.FormattedText>
</Label>
UriToStringConverter

This Converter converts a Uri into a String.

Helpers

Namespace
namespace AndreasReitberger.Shared.Core
ViewModelBase

This Class contains all needed properties for a ViewModel. You can inherit from this Class directly for your ViewModel, or create an own ViewModelBase and inherit there form this class.

public partial class BaseViewModel : ViewModelBase
    {
        #region Properties

        #region App
        bool _isBeta = SettingsStaticDefault.App_IsBeta;
        public new bool IsBeta
        {
            get { return _isBeta; }
            set { SetProperty(ref _isBeta, value); }
        }
        bool _isLightVersion = SettingsStaticDefault.App_IsLightVersion;
        public bool IsLightVersion
        {
            get { return _isLightVersion; }
            set { SetProperty(ref _isLightVersion, value); }
        }

        bool _isTabletMode = false;
        public bool IsTabletMode
        {
            get { return _isTabletMode; }
            set { SetProperty(ref _isTabletMode, value); }
        }
        #endregion

        #region Navigation
        bool _isViewShown = false;
        public bool IsViewShown
        {
            get { return _isViewShown; }
            set { SetProperty(ref _isViewShown, value); }
        }
        #endregion

        #region Connection
        bool _isConnecting = false;
        public bool IsConnecting
        {
            get { return _isConnecting; }
            set { SetProperty(ref _isConnecting, value); }
        }
        #endregion
        
        #endregion

        #region Constructor
        public BaseViewModel()
        {

        }
        #endregion

        #region LiveCycle
        public void OnDisappearing()
        {
            try
            {
                if (SettingsApp.SettingsChanged)
                {
                    // Notify other modules
                    MessagingCenter.Send(new AppMessageInfo(), AppMessages.OnSettingsChanged.ToString());
                    SettingsApp.SaveSettings();
                    SettingsApp.SettingsChanged = false;
                }
            }
            catch (Exception exc)
            {
                // Log error
                EventManager.Instance.LogError(exc);
            }
        }
        #endregion
    }
JsonConvertHelper

This Class uses Newtonsoft.JSON in order to serialize and deserialize objects to strings and vice reverse. This is helpful if you want to store Collections or custom objects in the MAUI.Preferences (Settings).

// Convert to a String
SettingsApp.WebCam_DefaultWebCamSettings = JsonConvertHelper.ToSettingsString(value);

// Convert back to an object
ObservableCollection<KlipperWebCamSettingsInfo> webcams = JsonConvertHelper.ToObject(SettingsApp.WebCam_Settings, new ObservableCollection<KlipperWebCamSettingsInfo>());
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-android34.0 is compatible.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-ios17.2 is compatible.  net8.0-maccatalyst was computed.  net8.0-maccatalyst17.2 is compatible.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net8.0-windows10.0.19041 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on SharedMauiCoreLibrary:

Package Downloads
SharedMauiXamlStylesLibrary

A collection of predefined Control styles for MAUI and Syncfusion.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.7 104 4/11/2024
1.1.6 114 3/28/2024
1.1.5 94 3/27/2024
1.1.4 111 3/20/2024
1.1.3 92 3/19/2024
1.1.2 143 2/12/2024
1.1.1 235 12/6/2023
1.1.0 126 11/14/2023
1.0.16 133 9/16/2023
1.0.15 165 8/9/2023
1.0.14 246 7/22/2023
1.0.13 230 5/18/2023
1.0.12 360 3/8/2023
1.0.11 389 1/20/2023
1.0.10-preview 135 1/10/2023
1.0.9-preview 149 12/29/2022
1.0.8.1 303 11/29/2022
1.0.8 347 11/29/2022
1.0.7 301 11/16/2022
1.0.6 312 11/14/2022
1.0.5 383 10/23/2022
1.0.4 663 10/3/2022
1.0.3 370 8/21/2022
1.0.2 372 8/15/2022
1.0.0-alpha 320 6/22/2022

Check GitHub releases for changelog.