Esempio n. 1
0
        public static string GetTagFromList(string image)
        {
            GUIHelper.ChangeCursor(Cursors.WaitCursor);
            string  tag = "";
            TagList tl  = new TagList();

            tl.SetTags(GetTags(image));
            GUIHelper.ChangeCursor(Cursors.Default);
            if (tl.ShowDialog() == System.Windows.Forms.DialogResult.OK)
            {
                tag = tl.GetSelected();
            }
            return(tag);
        }