将 PromptChoice 选项显示为列
Show PromptChoice options as columns
如何将这两个选项(或更多)显示为列?
我正在使用:
var dialog = new PromptDialog.PromptChoice<string>
(new string[] { "Yes", "No" }, "Are you sure?", "Sorry, that wans't a valid option", 2);
我想得到的结果是:
Are you sure ?
Yes
No
我认为没有办法更改按钮的布局。
如何将这两个选项(或更多)显示为列?
我正在使用:
var dialog = new PromptDialog.PromptChoice<string>
(new string[] { "Yes", "No" }, "Are you sure?", "Sorry, that wans't a valid option", 2);
我想得到的结果是:
Are you sure ?
Yes
No
我认为没有办法更改按钮的布局。