コード例 #1
0
        protected override bool ViewRow()
        {
            var f = new EmployeeEditForm();

            f.BeginView(this._currentItemID);
            return(f.ShowDialog() == DialogResult.OK);
        }
コード例 #2
0
        protected override bool CreateRow()
        {
            var f = new EmployeeEditForm();

            f.BeginCreate();
            return(f.ShowDialog() == DialogResult.OK);
        }