ImageResourceConverter
ImageResourceConverter
は、埋め込み画像 リソース ID を ImageSource に変換するコンバーターです。 埋め込み画像リソースは、ビルド アクションを埋め込みリソースに設定してプロジェクトに画像を追加した場合のことです。 ID は完全修飾名のため、プロジェクトの名前空間 + リソース名です。 CommunityToolkit.Maui.Sample
という名前のプロジェクト、Resources/Embedded
という名前の入れ子になったフォルダーのセット、dotnetbot.png
という名前の画像の例では、ID は次のように生成されます。
CommunityToolkit.Maui.Sample
+ Resources.Embedded
+ dotnetbot.png
結果は次のようになります。
CommunityToolkit.Maui.Sample.Resources.Embedded.dotnetbot.png
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 に設定されている場合に使用されます。 |
構文
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>
ImageResourceConverter の使用
ImageResourceConverter
は、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.ImageResourceConverterPage">
<ContentPage.Resources>
<ResourceDictionary>
<toolkit:ImageResourceConverter x:Key="ImageResourceConverter" />
</ResourceDictionary>
</ContentPage.Resources>
<Image Source="{Binding MyImageResource, Converter={StaticResource ImageResourceConverter}}" />
</ContentPage>
C#
ImageResourceConverter
は、C# では次のように使用できます。
class ImageResourceConverterPage : ContentPage
{
public ImageResourceConverterPage()
{
var image = new Image();
image.SetBinding(
Image.SourceProperty,
new Binding(
static (ViewModel vm) => vm.MyImageResource,
converter: new ImageResourceConverter()));
Content = label;
}
}
C# Markup
この CommunityToolkit.Maui.Markup
パッケージは、C# でこのコンバーターを使用するためのより簡潔な方法を提供します。
using CommunityToolkit.Maui.Markup;
class ImageResourceConverterPage : ContentPage
{
public ImageResourceConverterPage()
{
Content = new Image()
.Bind(
Label.SourceProperty,
static (ViewModel vm) => vm.MyImageResource,
converter: new ImageResourceConverter());
}
}
例
このコンバーターの動作の例は「.NET MAUI Community Toolkit サンプル アプリケーション」で確認できます。
API
ImageResourceConverter
のソース コードは、.NET MAUI Community Toolkit の GitHub リポジトリにあります。
.NET MAUI Community Toolkit