コード例 #1
0
        //Handler for clicking the 'Tags' button
        private void buttonTags_Click(object sender, EventArgs e)
        {
            //only create the form once.  It will be reused until image editing complete.
            if (formImageTags == null)
            {
                formImageTags = new FormImageTags(sourceImage);
            }

            formImageTags.ShowDialog();
        }
コード例 #2
0
ファイル: FormImageEdit.cs プロジェクト: pvilchez/ImageSource
        //Handler for clicking the 'Tags' button
        private void buttonTags_Click(object sender, EventArgs e)
        {
            //only create the form once.  It will be reused until image editing complete.
            if (formImageTags == null)
            {
                formImageTags = new FormImageTags(sourceImage);
            }

            formImageTags.ShowDialog();
        }