ColorToPercentYellowConverter
ColorToPercentYellowConverter
は、ユーザーが受信した Color
を、0 と 1 の間の数値として黄色のコンポーネントに変換できる、一方向コンバーターです。
Convert
メソッドは、黄色のコンポーネントを、指定された value
から、0 と 1 の間の数値として返します。
ConvertBack
メソッドはサポートされていません。
BaseConverter のプロパティ
基底クラス public abstract class BaseConverter
には、次のプロパティが実装されています。
プロパティ | 説明 |
---|---|
DefaultConvertReturnValue |
IValueConverter.Convert(object?, Type, object?, CultureInfo?) が Exception をスローしたときに返される既定値です。 この値は、CommunityToolkit.Maui.Options.ShouldSuppressExceptionsInConverters が true に設定されている場合に使用されます。 |
DefaultConvertBackReturnValue |
IValueConverter.ConvertBack(object?, Type, object?, CultureInfo?) が Exception をスローしたときに返される既定値です。 この値は、CommunityToolkit.Maui.Options.ShouldSuppressExceptionsInConverters が true に設定されている場合に使用されます。 |
ICommunityToolkitValueConverter のプロパティ
public interface ICommunityToolkitValueConverter
には次のプロパティが実装されています。
プロパティ | タイプ | 説明 |
---|---|---|
DefaultConvertReturnValue |
object? |
IValueConverter.Convert(object?, Type, object?, CultureInfo?) が Exception をスローしたときに返される既定値です。 この値は、CommunityToolkit.Maui.Options.ShouldSuppressExceptionsInConverters が true に設定されている場合に使用されます。 |
DefaultConvertBackReturnValue |
object? |
IValueConverter.ConvertBack(object?, Type, object?, CultureInfo?) が Exception をスローしたときに返される既定値です。 この値は、CommunityToolkit.Maui.Options.ShouldSuppressExceptionsInConverters が true に設定されている場合に使用されます。 |
構文
次の例で、特定の Color
の黄色のコンポーネントを表示するための、ColorToPercentYellowConverter
の使用方法を示します。
XAML
XAML 名前空間を含める
XAML でこのツールキットを使用するには、次の xmlns
をページまたはビューに追加する必要があります。
xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"
したがって、以下のコードは、
<ContentPage
x:Class="CommunityToolkit.Maui.Sample.Pages.MyPage"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml">
</ContentPage>
次のように、xmlns
を含むように変更されます。
<ContentPage
x:Class="CommunityToolkit.Maui.Sample.Pages.MyPage"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit">
</ContentPage>
ColorToPercentYellowConverter の使用
ColorToPercentYellowConverter
は、XAML では次のように使用できます。
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"
x:Class="CommunityToolkit.Maui.Sample.Pages.Converters.ColorToPercentYellowConverterPage">
<ContentPage.Resources>
<ResourceDictionary>
<toolkit:ColorToPercentYellowConverter x:Key="ColorToPercentYellowConverter" />
</ResourceDictionary>
</ContentPage.Resources>
<VerticalStackLayout>
<Label Text="The yellow component is:" />
<Label Text="{Binding MyFavoriteColor, Converter={StaticResource ColorToPercentYellowConverter}}" />
</VerticalStackLayout>
</ContentPage>
C#
ColorToPercentYellowConverter
は、C# では次のように使用できます。
class ColorToPercentYellowConverterPage : ContentPage
{
public ColorToPercentYellowConverterPage()
{
var label = new Label();
label.SetBinding(
Label.TextProperty,
new Binding(
static (ViewModel vm) => vm.MyFavoriteColor,
converter: new ColorToPercentYellowConverter()));
Content = new VerticalStackLayout
{
Children =
{
new Label { Text = "The yellow component is:" },
label
}
};
}
}
C# Markup
CommunityToolkit.Maui.Markup
パッケージは、C# でこのコンバーターを使用するための、より簡潔な方法を提供します。
using CommunityToolkit.Maui.Markup;
class ColorToPercentYellowConverterPage : ContentPage
{
public ColorToPercentYellowConverterPage()
{
Content = new VerticalStackLayout
{
Children =
{
new Label()
.Text("The yellow component is:"),
new Label()
.Bind(
Label.TextProperty,
static (ViewModel vm) => vm.MyFavoriteColor,
converter: new ColorToPercentYellowConverter())
}
};
}
}
例
このコンバーターの動作状態の例は、.NET MAUI Community Toolkit サンプル アプリケーションで確認できます。
API
ColorToPercentYellowConverter
のソース コードは、.NET MAUI Community Toolkit の GitHub リポジトリにあります。
.NET MAUI Community Toolkit