private void userToolStripMenuItem_Click(object sender, EventArgs e)
        {
            PropertyAccountingBusinessView childform = new PropertyAccountingBusinessView();

            childform.MdiParent = this;
            childform.Show();
        }
        private void metroButton2_Click_1(object sender, EventArgs e)
        {
            PropertyAccountingBusinessView view = new PropertyAccountingBusinessView();

            view.ShowDialog();
        }