Page.DisplayActionSheet メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
DisplayActionSheet(String, String, String, String[]) |
プラットフォーム アクション シートを表示し、アプリケーション ユーザーが複数のボタンから選択できるようにします。 |
DisplayActionSheet(String, String, String, FlowDirection, String[]) |
プラットフォーム アクション シートを表示し、アプリケーション ユーザーが複数のボタンから選択できるようにします。 |
DisplayActionSheet(String, String, String, String[])
- ソース:
- Page.cs
- ソース:
- Page.cs
プラットフォーム アクション シートを表示し、アプリケーション ユーザーが複数のボタンから選択できるようにします。
public:
System::Threading::Tasks::Task<System::String ^> ^ DisplayActionSheet(System::String ^ title, System::String ^ cancel, System::String ^ destruction, ... cli::array <System::String ^> ^ buttons);
public System.Threading.Tasks.Task<string> DisplayActionSheet (string title, string cancel, string destruction, params string[] buttons);
member this.DisplayActionSheet : string * string * string * string[] -> System.Threading.Tasks.Task<string>
Public Function DisplayActionSheet (title As String, cancel As String, destruction As String, ParamArray buttons As String()) As Task(Of String)
パラメーター
- title
- String
表示されているアクション シートのタイトル。 null
してタイトルを非表示にすることができます。
- cancel
- String
[キャンセル] ボタンに表示されるテキスト。 取り消しアクションを非表示にするには null を指定できます。
- destruction
- String
[Destruct]\(破棄\) ボタンに表示されるテキスト。 null
にして破壊的なオプションを非表示にできます。
- buttons
- String[]
追加のボタン用のテキスト ラベル。
戻り値
アクション シートを表示し、ユーザーが押したボタンの文字列キャプションを返す Task 。
適用対象
DisplayActionSheet(String, String, String, FlowDirection, String[])
- ソース:
- Page.cs
- ソース:
- Page.cs
プラットフォーム アクション シートを表示し、アプリケーション ユーザーが複数のボタンから選択できるようにします。
public:
System::Threading::Tasks::Task<System::String ^> ^ DisplayActionSheet(System::String ^ title, System::String ^ cancel, System::String ^ destruction, Microsoft::Maui::FlowDirection flowDirection, ... cli::array <System::String ^> ^ buttons);
public System.Threading.Tasks.Task<string> DisplayActionSheet (string title, string cancel, string destruction, Microsoft.Maui.FlowDirection flowDirection, params string[] buttons);
member this.DisplayActionSheet : string * string * string * Microsoft.Maui.FlowDirection * string[] -> System.Threading.Tasks.Task<string>
Public Function DisplayActionSheet (title As String, cancel As String, destruction As String, flowDirection As FlowDirection, ParamArray buttons As String()) As Task(Of String)
パラメーター
- title
- String
表示されているアクション シートのタイトル。 null
してタイトルを非表示にすることができます。
- cancel
- String
[キャンセル] ボタンに表示されるテキスト。 取り消しアクションを非表示にするには null を指定できます。
- destruction
- String
[Destruct]\(破棄\) ボタンに表示されるテキスト。 null
にして破壊的なオプションを非表示にできます。
- flowDirection
- FlowDirection
アクション シートで使用するフロー方向。
- buttons
- String[]
追加のボタン用のテキスト ラベル。
戻り値
アクション シートを表示し、ユーザーが押したボタンの文字列キャプションを返す Task 。
注釈
開発者は、Windows 行終端 CR-LF は Windows システムでのみ動作し、iOS および Android と互換性がない点に注意する必要があります。 この特定の結果として、CR-LF の後に表示される文字 (タイトルなど) が Windows 以外のプラットフォームでは表示されない可能性があります。 開発者は、対象となるシステムごとに適切な行終端を使用する必要があります。
適用対象
.NET MAUI