Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 703 Bytes

ReadMe.NuGet.md

File metadata and controls

17 lines (12 loc) · 703 Bytes

FunctionZero.Maui.zBind is a xaml markup extension for MAUI that allows you to bind directly to an expression

Install version 8.0.0 and above for .NET 8.

If you want to do things like this: (note the expression is enclosed inside quotes)

<StackLayout IsVisible="{z:Bind '(Item.Count != 0) AND (Status == \'Administrator\')'}" > ...
  1. Install FunctionZero.Maui.zBind to your shared project
  2. add xmlns:z="clr-namespace:FunctionZero.Maui.zBind.z;assembly=FunctionZero.Maui.zBind"
    To your xaml page (or let Visual Studio do it for you)

Head over here for source code, documentation and a sample application