Hi@milky_bar_may,
Based on the issue you mentioned, do you want to disable the checkbox once it is checked.
I assume that the CheckBox has the corresponding values to a column in your SP list. And you want to avoid repeating patch CheckBox value. On this premise, I have a test on my side, please take a try as below:
- Set the Default property of your CheckBox as below:
If(Gallery1.DisplayMode=DisplayMode.Edit,false,true)
- Set the OnCheck property of your CheckBox as below:
If(Checkbox2.Value=true,DisplayMode.Disabled,DisplayMode.Edit)
As an alternative solution, you can also set the rectangle visible property as below:
If(Checkbox2.Value=true,true,false)
Best Regards,
Qi Qiao