Ejemplo n.º 1
0
 public static bool Show(string title, out string name, out Bitmap bmp)
 {
     BitmapInputBox form = new BitmapInputBox(title);
     bool result = form.ShowDialog() == DialogResult.OK;
     name = form.nameResult;
     bmp = form.bmpResult;
     return result;
 }
Ejemplo n.º 2
0
        public static bool Show(string title, out string name, out Bitmap bmp)
        {
            BitmapInputBox form   = new BitmapInputBox(title);
            bool           result = form.ShowDialog() == DialogResult.OK;

            name = form.nameResult;
            bmp  = form.bmpResult;
            return(result);
        }