Ejemplo n.º 1
0
        public string Read()
        {
            SignPad sign    = new SignPad();
            string  imgPath = string.Empty;

            try
            {
                if (sign.ShowDialog() == DialogResult.OK)
                {
                    imgPath = sign.Save();
                }
                //sign.Dispose();
                return(imgPath);
            }
            catch (Exception e)
            {
                MessageBox.Show(e.ToString());
                return(imgPath);
            }
        }