Skip to content

Toolkit for MAUI - v1.5.0

Compare
Choose a tag to compare
@XceedBoucherS XceedBoucherS released this 17 Oct 13:48
· 12 commits to main since this release

What's new in v1.5.0 ?

Released October 17, 2023

v1.5.0 provides new controls to help you develop new Maui applications. Some of the new controls include a Chart (Lines and Bars) which can contain many different series, a ColorCanvas to pick a color from various ways, more flexible Switches, CheckBoxes and TextBoxes, as well as a new Expander control. It also fixes some minors issues related to other controls.

Want an easier way to install Toolkit for MAUI?

Toolkit for MAUI v1.5.0 is available on NuGet as of October 26, 2023.

.NET 7 notes:

Requires .NET 7 and up.

Instructions for using the Toolkit for MAUI binaries:

  • Install .NET 7 and .NET MAUI
  • Download the ToolkitMaui_Binaries
  • Right-click ToolkitMaui_Binaries.zip -> Properties -> Unblock
  • Unzip the ToolkitMaui_Binaries.zip
  • Add a using statement ("using Xceed.Maui.Toolkit;") to the top of .cs files
  • Add a new xmlns (for example, xmlns:xctk="http://schemas.xceed.com/maui/xaml/toolkit") to the top of XAML files
  • In your XAML, use the namespace prefix (in the above example, <xctk: ...>)
  • Make sure to call UseXceedMauiToolkit() in your MauiProgram.CreateMauiApp()