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