private void ExtrasToolStripMenuItem_Click(object sender, EventArgs e) { Wares.Extra.ExtrasList form = new Wares.Extra.ExtrasList(); bool allowed = Compas.Logic.Security.CurrentSecurityContext.Principal.OpperationAllowed(form.Name); if (allowed == true) { form.MdiParent = this; form.Show(); } else { MessageBox.Show("Дія заборонена. Зверніться до адміністратора."); } }