HelloMauiToolkit
1.0.0
.NET MAUI 社区工具包是使用 .NET MAUI 进行开发的常见元素的集合,开发人员倾向于在多个应用程序之间复制这些元素。它简化并演示了使用 .NET MAUI 构建应用程序时常见的开发人员任务。
此特定示例使用ColorToHexRgbStringConverter
。
UseMauiCommunityToolkit()
为了使用 .NET MAUI Community Toolkit,您需要调用MauiProgram.cs
文件中的扩展方法,如下所示:
using CommunityToolkit . Maui ;
public static class MauiProgram
{
public static MauiApp CreateMauiApp ( )
{
var builder = MauiApp . CreateBuilder ( ) ;
// Initialise the toolkit
builder . UseMauiApp < App > ( ) . UseMauiCommunityToolkit ( ) ;
// the rest of your logic...
}
}
在 XAML 文件的顶部,添加以下xmlns
xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"
ColorToHexRgbStringConverter
在您的Binding
中分配Converter={converters:ColorToHexRgbStringConverter}
:
Text="{Binding Source={x:Reference ClickMeButton}, Path=BackgroundColor, Converter={toolkit:ColorToHexRgbStringConverter}}