You just need to set its property by user defined control name which you used in your Form with the name of user control in your Form like below.
usercontrolaliesName.SecurityLevel = 1;
//or
usercontrolaliesName.SecurityLevel = 0;
Check the below Sample code for your reference.
User control : btn
FORM : Form1
Form1.cs
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
btnSubmit.SecurityLevel = 1;
//btnSubmit.SecurityLevel = 0;
}
}
Screenshot