基于单选按钮选择如何更改 powerapps 中的放置选择

Based on Radio button selection how to change drop choices in powerapps

我有一个单选按钮和一个下拉菜单,其中单选按钮的选项为:[员工、学生]。 如何根据单选按钮选择相应地更改值。 Employee 的 Onclick 下拉选项应为 [emp1,emp2,emp2] 学生的点击下拉选项应该是 [stu1,stu2,stu2]

将下拉项设置为:

Switch(radioButton.Selected.Value,"Employee",["emp1","emp2"],"Student",["stu1","stu2"]...)