SwipeItems クラス

定義

SwipeItem オブジェクトのコレクションを表します。

UWP 用の同等の WinUI 2 API: Microsoft.UI.Xaml.Controls.SwipeItems (Windows アプリ SDKの WinUI の場合は、Windows アプリ SDK名前空間を参照してください)。

/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 327680)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
/// [Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
[WebHostHidden]
class SwipeItems : DependencyObject, IIterable<SwipeItem>, IVector<SwipeItem>
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 327680)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
/// [Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
class SwipeItems : DependencyObject, IIterable<SwipeItem>, IVector<SwipeItem>
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 327680)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
[Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
public class SwipeItems : DependencyObject, IEnumerable<SwipeItem>, IList<SwipeItem>
function SwipeItems()
Public Class SwipeItems
Inherits DependencyObject
Implements IEnumerable(Of SwipeItem), IList(Of SwipeItem)
<SwipeControl>
  <SwipeControl.TopItems>
    oneOrMoreSwipeItemDefinitions
  </SwipeControl.TopItems>
</SwipeControl>
継承
Object IInspectable DependencyObject SwipeItems
属性
実装

Windows の要件

デバイス ファミリ
Windows 10 Fall Creators Update (10.0.16299.0 で導入)
API contract
Windows.Foundation.UniversalApiContract (v5.0 で導入)

ヒント

詳細、設計ガイダンス、およびコード例については、「 スワイプ」を参照してください。

WinUI 2 ギャラリー アプリがインストールされている場合は、ここをクリックしてアプリを開き、SwipeControl の動作を確認します

コンストラクター

SwipeItems()

SwipeItems クラスの新しいインスタンスを初期化します。

UWP 用の同等の WinUI 2 API: Microsoft.UI.Xaml.Controls.SwipeItems.-ctor (Windows アプリ SDKの WinUI の場合は、Windows アプリ SDK名前空間を参照してください)。

プロパティ

Dispatcher

このオブジェクトが関連付けられている CoreDispatcher を取得します。 CoreDispatcher は、コードが UI 以外のスレッドによって開始された場合でも、UI スレッド上の DependencyObject にアクセスできる機能を表します。

(継承元 DependencyObject)
Mode

スワイプ操作の効果を示す値を取得または設定します。

UWP 用の同等の WinUI 2 API: Microsoft.UI.Xaml.Controls.SwipeItems.Mode (Windows アプリ SDKの WinUI の場合は、Windows アプリ SDK名前空間を参照してください)。

ModeProperty

Mode 依存関係プロパティを識別します。

UWP 用の同等の WinUI 2 API: Microsoft.UI.Xaml.Controls.SwipeItems.ModeProperty (Windows アプリ SDKの WinUI の場合は、Windows アプリ SDK名前空間を参照してください)。

Size

コレクションのサイズ (カウント) を取得します。

UWP 用の同等の WinUI 2 API: Microsoft.UI.Xaml.Controls.SwipeItems.Size (Windows アプリ SDKの WinUI の場合は、Windows アプリ SDK名前空間を参照してください)。

メソッド

Append(SwipeItem)

新しい項目をコレクションに追加します。

UWP 用の同等の WinUI 2 API: Microsoft.UI.Xaml.Controls.SwipeItems.Append (Windows アプリ SDKの WinUI の場合は、Windows アプリ SDK名前空間を参照してください)。

Clear()

コレクションからすべての項目を削除します。

UWP 用の同等の WinUI 2 API: Microsoft.UI.Xaml.Controls.SwipeItems.Clear (Windows アプリ SDKの WinUI の場合は、Windows アプリ SDK名前空間を参照してください)。

ClearValue(DependencyProperty)

依存関係プロパティのローカル値をクリアします。

(継承元 DependencyObject)
First()

コレクション内の項目の反復子を返します。

UWP 用の同等の WinUI 2 API: Microsoft.UI.Xaml.Controls.SwipeItems.First (Windows アプリ SDKの WinUI の場合は、Windows アプリ SDK名前空間を参照してください)。

GetAnimationBaseValue(DependencyProperty)

依存関係プロパティに対して確立された基本値を返します。これは、アニメーションがアクティブでない場合に適用されます。

(継承元 DependencyObject)
GetAt(UInt32)

指定したインデックスにある項目を返します。

UWP 用の同等の WinUI 2 API: Microsoft.UI.Xaml.Controls.SwipeItems.GetAt(UInt32) (Windows アプリ SDKの WinUI の場合は、Windows アプリ SDK名前空間を参照してください)。

GetMany(UInt32, SwipeItem[])

反復子を通過する 1 つのパス内の複数の要素を取得します。

UWP 用の同等の WinUI 2 API: Microsoft.UI.Xaml.Controls.SwipeItems.GetMany (Windows アプリ SDKの WinUI の場合は、Windows アプリ SDK名前空間を参照してください)。

GetValue(DependencyProperty)

DependencyObject から依存関係プロパティの現在の有効な値を返します。

(継承元 DependencyObject)
GetView()

コレクションに変更できないビューを取得します。

UWP 用の同等の WinUI 2 API: Microsoft.UI.Xaml.Controls.SwipeItems.GetView (Windows アプリ SDKの WinUI の場合は、Windows アプリ SDK名前空間を参照してください)。

IndexOf(SwipeItem, UInt32)

指定した項目のインデックスを取得します。

UWP 用の同等の WinUI 2 API: Microsoft.UI.Xaml.Controls.SwipeItems.IndexOf (Windows アプリ SDKの WinUI の場合は、Windows アプリ SDK名前空間を参照してください)。

InsertAt(UInt32, SwipeItem)

指定したインデックス位置に指定した項目を挿入します。

UWP 用の同等の WinUI 2 API: Microsoft.UI.Xaml.Controls.SwipeItems.InsertAt (Windows アプリ SDKの WinUI の場合は、Windows アプリ SDK名前空間を参照してください)。

ReadLocalValue(DependencyProperty)

ローカル値が設定されている場合は、依存関係プロパティのローカル値を返します。

(継承元 DependencyObject)
RegisterPropertyChangedCallback(DependencyProperty, DependencyPropertyChangedCallback)

この DependencyObject インスタンスの特定の DependencyProperty に対する変更をリッスンするための通知関数を登録します。

(継承元 DependencyObject)
RemoveAt(UInt32)

指定したインデックス位置にある項目を削除します。

UWP 用の同等の WinUI 2 API: Microsoft.UI.Xaml.Controls.SwipeItems.RemoveAt(UInt32) (Windows アプリ SDKの WinUI の場合は、Windows アプリ SDK名前空間を参照してください)。

RemoveAtEnd()

コレクション内の最後の項目を削除します。

UWP 用の同等の WinUI 2 API: Microsoft.UI.Xaml.Controls.SwipeItems.RemoveAtEnd (Windows アプリ SDKの WinUI の場合は、Windows アプリ SDK名前空間を参照してください)。

ReplaceAll(SwipeItem[])

最初にコレクションをクリアし、指定された配列を新しい項目として挿入します。

UWP 用の同等の WinUI 2 API: Microsoft.UI.Xaml.Controls.SwipeItems.ReplaceAll (Windows アプリ SDKの WinUI の場合は、Windows アプリ SDK名前空間を参照してください)。

SetAt(UInt32, SwipeItem)

指定したインデックス位置の値を、指定した値に設定します。

UWP 用の同等の WinUI 2 API: Microsoft.UI.Xaml.Controls.SwipeItems.SetAt (Windows アプリ SDKの WinUI の場合は、Windows アプリ SDK名前空間を参照してください)。

SetValue(DependencyProperty, Object)

DependencyObject の依存関係プロパティのローカル値を設定します。

(継承元 DependencyObject)
UnregisterPropertyChangedCallback(DependencyProperty, Int64)

RegisterPropertyChangedCallback を呼び出して以前に登録した変更通知を取り消します。

(継承元 DependencyObject)

適用対象