3
私はBotFramework FormFlowを使用しています。質問の1つは、ユーザーが選択できる静的な選択肢リストを示します。ユーザーがCentral Usを選択した場合、それでも明確化が求められる場合、ユーザーが選択した内容が明確であるため、回避する方法があります。 FormFlow
が入力された用語はまた、他のオプションのいずれかで発見されたときに明確にしようとしますので、これは正常な動作です、ドキュメント毎のBotは静的なボタンでさえ明確にするように尋ねます
[Prompt("Please choose the region in which the cluster should be created {||}")]
public RegionOptions? DesiredGeoRegion;
public enum RegionOptions
{
AustraliaEast,
AustraliaSoutheast,
BrazilSouth,
CanadaCentral,
CanadaEast,
CentralIndia,
CentralUS,
EastAsia,
EastUS,
EastUS2,
JapanEast,
JapanWest,
NorthCentralUS,
NorthEurope,
SouthCentralUS,
SouthIndia,
SoutheastAsia,
UKNorth,
UKSouth2,
WestCentralUS,
WestEurope,
WestIndia,
WestUS,
WestUS2
}
Enumコードを投稿できますか? –
もちろん、Enumコードを追加しました –