0
A
回答
0
ActionSheet
從UIAlertController
// Create a new Alert Controller
UIAlertController actionSheetAlert = UIAlertController.Create("Action Sheet", "Select an item from below", UIAlertControllerStyle.ActionSheet);
// Add Actions
actionSheetAlert.AddAction(UIAlertAction.Create("Item One",UIAlertActionStyle.Default, (action) => Console.WriteLine ("Item One pressed.")));
actionSheetAlert.AddAction(UIAlertAction.Create("Item Two",UIAlertActionStyle.Default, (action) => Console.WriteLine ("Item Two pressed.")));
actionSheetAlert.AddAction(UIAlertAction.Create("Item Three",UIAlertActionStyle.Default, (action) => Console.WriteLine ("Item Three pressed.")));
actionSheetAlert.AddAction(UIAlertAction.Create("Cancel",UIAlertActionStyle.Cancel, (action) => Console.WriteLine ("Cancel button pressed.")));
// Required for iPad - You must specify a source for the Action Sheet since it is
// displayed as a popover
UIPopoverPresentationController presentationPopover = actionSheetAlert.PopoverPresentationController;
if (presentationPopover!=null) {
presentationPopover.SourceView = this.View;
presentationPopover.PermittedArrowDirections = UIPopoverArrowDirection.Up;
}
// Display the alert
this.PresentViewController(actionSheetAlert,true,null);
更多信息:https://developer.xamarin.com/recipes/ios/standard_controls/alertcontroller/
相關問題
- 1. 我們可以在對話框中打開對話框嗎?
- 2. 當其他對話框打開時,我可以調用對話框嗎?
- 3. 我可以在同一個「onCreateDialog」中有2個對話框嗎?
- 4. 我可以在JQM中打開多個對話框嗎?
- 5. 我們可以在對話框中使用select2嗎?
- 6. JQuery對話框可以打開另一個JQuery對話框嗎?
- 7. 我可以在Watson對話服務對話框中使用LaTex腳本嗎?
- 8. 我可以創建動態事件調度對話框嗎?
- 9. 我可以在Android中的MapActivity中顯示對話框嗎?
- 10. 我可以在對話框中添加選項菜單嗎?
- 11. 我可以在Java Web Start中禁止加載對話框嗎?
- 12. 我可以在Backbone中使用這個回調結果嗎?
- 13. 我們可以在這個python類聲明中調用foo嗎?
- 14. 我可以在黑莓的彈出屏幕上調用對話框嗎?
- 15. 我可以在另一個模式對話框中放置一個模式對話框嗎?兩種模式?
- 16. 我們可以在xamarin.ios中使用xamarin.android代碼嗎?
- 17. 我可以在Cocoa中用我自己的對話框替換默認文件選擇對話框嗎?
- 18. 我可以觸發一個applet的對話框嗎?
- 19. Atom Editor插件:我可以創建一個對話框嗎?
- 20. 你可以重寫MessageDlg調用自定義TForm /對話框嗎?
- 21. 我可以使用此代碼登錄使用對話框嗎?
- 22. 我可以將jQuery UI對話框居中放到div中嗎?
- 23. Android:我可以顯示多個對話框嗎?有沒有像對話Z級?
- 24. 對話框X可以從jQuery UI 1.7對話框中禁用嗎?
- 25. 我可以使用WPF的UserControl上的對話框和DialogResult嗎?
- 26. JQuery:我可以使用對話框打開外部網頁嗎?
- 27. 我可以禁用y對話框的打印頁面嗎?
- 28. 我可以使用Windows對話框移動/覆蓋文件嗎?
- 29. ViewPager可以在自定義對話框中使用嗎?
- 30. 我可以在JavaScript中獲得兩個連續的對話框嗎?
換句話說,這不是內置的? – GenericTeaCup
它內置! – TonyMkenu
創建對話框的可能性是內置的。但確切的項目「呼叫」,「發送信息」,...的確切對話需要手動完成。這是你內置的意思,我猜? – GenericTeaCup