示例#1
0
        public static void OpenImageEditor()
        {
            string filePath = ImageHelpers.OpenImageFileDialog();

            if (!string.IsNullOrEmpty(filePath))
            {
                TaskHelpers.AnnotateImage(filePath);
            }
        }