Example #1
0
        public void FireLinkClicked()
        {
            if (LinkClicked != null)
            {
                LinkClicked(this, EventArgs.Empty);
            }
            OKCancelForm frm = CreateForm();

            if (frm != null && frm.ShowDialog(this) == DialogResult.OK)
            {
                this.Value = frm.Value;
            }
        }
Example #2
0
 public BindingListController(OKCancelForm entForm)
     : this()
 {
     _EntityForm = entForm;
 }