You could try something like below :
If(Checkbox3.Value && Checkbox2.Value && Checkbox1.Value,DisplayMode.Edit,Disabled)
When everything is checked :
Code explanation :
It does an & - And
Operation for all the checkbox values and if all are true (Checked), then the button displaymode will Edit else will be in disabled state.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…