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
要在 [解構] 按鈕中顯示的文字。 可以是 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
要在 [解構] 按鈕中顯示的文字。 可以是 null
,隱藏解構選項。
- flowDirection
- FlowDirection
要由動作表使用的流程方向。
- buttons
- String[]
其他按鈕的文字標籤。
傳回
Task,顯示動作表單,並傳回使用者所按下按鈕的字串標題。
備註
開發人員應該注意,Windows 行結尾、CR-LF、只能在 Windows 系統上運作,而且與 iOS 和 Android 不相容。 其特定結果是,在CR-LF之後出現的字元(例如,在標題中)可能不會顯示在非 Windows 平臺上。 開發人員必須針對每個目標系統使用正確的行尾結束符號。