ImageCell クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
イメージがある TextCell。
public ref class ImageCell : Microsoft::Maui::Controls::TextCell
public class ImageCell : Microsoft.Maui.Controls.TextCell
type ImageCell = class
inherit TextCell
Public Class ImageCell
Inherits TextCell
- 継承
注釈
ImageCell オブジェクトは、画像と付随するテキストを表に配置するために使用されます。
次の例は、基本的な使用方法を示しています。
using System;
using Microsoft.Maui.Controls;
namespace FormsGallery
{
class ImageCellDemoPage : ContentPage
{
public ImageCellDemoPage()
{
Label header = new Label
{
Text = "ImageCell",
FontSize = Device.GetNamedSize (NamedSize.Large, typeof(Label)),
HorizontalOptions = LayoutOptions.Center
};
TableView tableView = new TableView
{
Intent = TableIntent.Form,
Root = new TableRoot
{
new TableSection
{
new ImageCell
{
// Some differences with loading images in initial release.
ImageSource =
Device.OnPlatform(ImageSource.FromUri(new Uri("http://xamarin.com/images/index/ide-xamarin-studio.png")),
ImageSource.FromFile("ide_xamarin_studio.png"),
ImageSource.FromFile("Images/ide-xamarin-studio.png")),
Text = "This is an ImageCell",
Detail = "This is some detail text",
}
}
}
};
// Accomodate iPhone status bar.
this.Padding = new Thickness(10, Device.OnPlatform(20, 0, 0), 10, 5);
// Build the page.
this.Content = new StackLayout
{
Children =
{
header,
tableView
}
};
}
}
}
コンストラクター
ImageCell() |
ImageCell クラスの新しいインスタンスを初期化します。 |
フィールド
DefaultCellHeight |
セルの既定の高さ。 (継承元 Cell) |
ImageSourceProperty |
のバインド可能なプロパティ ImageSourceです。 |
transientNamescope |
イメージがある TextCell。 (継承元 Element) |
プロパティ
AutomationId |
自動化フレームワークがこの要素を見つけ、対話することを可能にする値を取得または設定します。 (継承元 Element) |
BindingContext |
この BindableObjectプロパティに属するバインドされたプロパティの対象となるプロパティを含むオブジェクトを取得または設定します。 これはバインド可能なプロパティです。 (継承元 BindableObject) |
ClassId |
意味的に同類の要素の集合を識別するために使用される値を取得または設定します。 (継承元 Element) |
Command |
TextCell がタップされたときに実行される ICommand を取得または設定します。 これはバインド可能なプロパティです。 (継承元 TextCell) |
CommandParameter |
コマンドの呼び出し時に渡されるパラメーターを取得または設定します。 これはバインド可能なプロパティです。 (継承元 TextCell) |
ContextActions |
ユーザーが Cell にデバイス固有のコンテキストのジェスチャを実行するときに表示されるメニュー項目の一覧を取得します。 (継承元 Cell) |
Detail |
TextCell に表示されるセカンダリ テキストを取得または設定します。 これはバインド可能なプロパティです。 (継承元 TextCell) |
DetailColor |
セカンダリ テキストをレンダリングするための色を取得または設定します。 これはバインド可能なプロパティです。 (継承元 TextCell) |
Dispatcher |
このバインド可能なオブジェクトが作成されたときに使用可能だったディスパッチャーを取得します。それ以外の場合は、使用可能な最も近いディスパッチャー (おそらくウィンドウ/アプリ) を検索しようとします。 (継承元 BindableObject) |
EffectControlProvider |
.NET MAUI による内部使用の場合。 (継承元 Element) |
Effects |
実行時に要素に適用されるスタイルとプロパティを取得または設定します。 (継承元 Element) |
Handler |
この要素に関連付けられているハンドラーを取得または設定します。 (継承元 Element) |
HasContextActions |
セルに ContextActions リスト プロパティのメニュー項目が少なくとも 1 つあるかどうかを示す値を取得します。 (継承元 Cell) |
Height |
Cell の高さを取得または設定します。 (継承元 Cell) |
Id |
アプリケーションの実行全体で要素を一意に識別するために使用できる値を取得します。 (継承元 Element) |
ImageSource |
イメージの読み込み元となる ImageSource を取得または設定します。 これはバインド可能なプロパティです。 |
IsContextActionsLegacyModeEnabled |
イメージがある TextCell。 (継承元 Cell) |
IsEnabled |
Cell の IsEnabled 状態を取得または設定します。 これはバインド可能なプロパティです。 (継承元 Cell) |
LogicalChildren |
古い.
イメージがある TextCell。 (継承元 Element) |
Parent |
この要素の親 Element を取得または設定します。 (継承元 Element) |
RealParent |
.NET MAUI による内部使用の場合。 (継承元 Element) |
RenderHeight |
デバイス上でレンダリングされたセルの高さを取得します。 (継承元 Cell) |
StyleId |
要素を一意に識別するユーザー定義の値を取得または設定します。 (継承元 Element) |
Text |
表示されるプライマリ テキストを取得または設定します。 これはバインド可能なプロパティです。 (継承元 TextCell) |
TextColor |
プライマリ テキストをレンダリングするための色を取得または設定します。 これはバインド可能なプロパティです。 (継承元 TextCell) |
メソッド
イベント
Appearing |
イメージがある TextCell。 (継承元 Cell) |
BindingContextChanged |
BindingContext プロパティの値が変化したときに発生します。 (継承元 BindableObject) |
ChildAdded |
子要素が要素に追加されるたびに発生します。 (継承元 Element) |
ChildRemoved |
子要素が要素から削除されるたびに発生します。 (継承元 Element) |
DescendantAdded |
子要素が要素のサブツリーに追加されるたびに発生します。 (継承元 Element) |
DescendantRemoved |
子要素が要素サブツリーから削除されるたびに発生します。 (継承元 Element) |
Disappearing |
イメージがある TextCell。 (継承元 Cell) |
ForceUpdateSizeRequested |
イメージがある TextCell。 (継承元 Cell) |
HandlerChanged |
要素のハンドラーが変更されるたびに発生します。 (継承元 Element) |
HandlerChanging |
要素のハンドラーが変更を開始するたびに発生します。 (継承元 Element) |
ParentChanged |
要素の親が変更されるたびに発生します。 (継承元 Element) |
ParentChanging |
要素の変更が開始されるたびに発生します。 (継承元 Element) |
PropertyChanged |
プロパティ値が変更されたときに発生します。 (継承元 BindableObject) |
PropertyChanging |
プロパティ値が変更されるときに発生します。 (継承元 BindableObject) |
Tapped |
イメージがある TextCell。 (継承元 Cell) |
明示的なインターフェイスの実装
拡張メソッド
適用対象
.NET MAUI