Example #1
0
 public void Show(
     WinSupport.BaseEditUserControl editUserControl,
     WinSupport.BaseSelectUserControl selectUserControl,
     System.Type businessObjectType,
     System.Windows.Forms.Form parent,
     string title,
     bool showToolbar)
 {
     this.Show(editUserControl, selectUserControl,
               businessObjectType, parent, title, showToolbar, 0, 0);
 }
Example #2
0
 public void ShowDialog(
     WinSupport.BaseEditUserControl editUserControl,
     WinSupport.BaseSelectUserControl selectUserControl,
     System.Type businessobjecttype,
     System.Windows.Forms.Form parent,
     bool showToolbar)
 {
     ShowDialog(editUserControl, selectUserControl,
                businessobjecttype, parent,
                "", showToolbar);
 }
Example #3
0
 public void ShowDialog(
     WinSupport.BaseEditUserControl editUserControl,
     WinSupport.BaseSelectUserControl selectUserControl,
     System.Type businessobjecttype,
     System.Windows.Forms.Form parent,
     string title,
     bool showToolbar,
     int openingWidth)
 {
     this.ShowDialog(editUserControl, selectUserControl,
                     businessobjecttype, parent, title, showToolbar, openingWidth, 0);
 }
Example #4
0
 public void Show(
     WinSupport.BaseEditUserControl editUserControl,
     WinSupport.BaseSelectUserControl selectUserControl,
     System.Type businessObjectType,
     System.Windows.Forms.Form parent,
     string title,
     bool showToolbar,
     int openingWidth,
     int openingHeight)
 {
     this.SetupForm(editUserControl, selectUserControl,
                    businessObjectType, parent, title, showToolbar,
                    openingWidth, openingHeight);
     base.Show();
 }