Microsoft ChatBot で AdaptiveCard 入力コントロールを使用しています。アダプティブ コントロールの TextInput または ChoiceSet の変更プロパティまたはイベントを取得する方法のヒントを教えてください。たとえば、ChoiceSet の選択で、TextInput コントロールに値を入力したいですか?
//new TextBlock() { Text = "Country" },
new ChoiceSet()
{
Id = "Country",
Speak = "<s>Please enter your country.</s>",
IsMultiSelect = false,
Style = ChoiceInputStyle.Compact,
Separation= SeparationStyle.Default,
Choices = choices,
Value = "country"
},
new TextInput()
{
Id = "Mobile",
Speak = "<s>Please enter your mobile with country code.</s>",
Placeholder = "+(country code)(Your Phone Number)",
Style = TextInputStyle.Tel,
IsRequired = true
},