Ejemplo n.º 1
0
 public void ClosePopup()
 {
     if (popup != null)
     {
         popup.Close();
         popup = null;
     }
 }
Ejemplo n.º 2
0
        public void ShowPopup(System.Windows.Forms.Form owner, System.Drawing.Point location)
        {
            if (popup != null)
            {
                popup.Close();
                popup = null;
            }

            popup              = new views.popup.YosanYobihiPopup();
            popup.PopupClosed += delegate() {
                popup   = null;
                rowData = null;
            };
            popup.Row.Column_UpdateValueAction += Column_UpdateValue;
            popup.Row.CheckDataButtonClicked   += (s, e) => CheckDataButtonClicked(s, e);

            popup.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
            popup.Location      = location;

            popup.Show(owner);

            stickyWindowController = new misc.StickyWindowController(owner, popup);
        }
Ejemplo n.º 3
0
 public YosanYobihiPopupController()
 {
     popup   = null;
     rowData = null;
 }