So i've created a custom component and name it to CustomDropDown then add a DropDown control:
then I create an Input custom property with name Items:
then I set my DropDown1 Items property to: Parent.Items
then I create an Output property with name Value:
then I set my Value property to: Dropdown1.Selected.Value
then on my Screen1 I insert CustomDropDown_1:
then on my Screen2 I insert CustomDropDown_2:
then I put Items of CustomDropDown_2 to [CustomDropDown_1.Value] but I get an error :
This rule create a circular reference properties.
Is it an intended behavior? because if I try to put CustomDropDown_2 in same screen with CustomDropDown_1 it doesn't show that error. If it is not, what did I miss here?