Beispiel #1
0
 private void buttonRemoveTagType_Click( object sender, EventArgs e )
 {
     ConfirmDialog dialog = new ConfirmDialog( Constants.STRING_YES
                                             , Constants.STRING_NO
                                             , Constants.STRING_TAGTYPE_REMOVE
                                             , Constants.STRING_CONFIRM_TITLE
                                             , removeTagType
                                             , noAction
                                             );
     dialog.ShowDialog();
 }
Beispiel #2
0
        private void buttonRemoveTagType_Click(object sender, EventArgs e)
        {
            ConfirmDialog dialog = new ConfirmDialog(Constants.STRING_YES
                                                     , Constants.STRING_NO
                                                     , Constants.STRING_TAGTYPE_REMOVE
                                                     , Constants.STRING_CONFIRM_TITLE
                                                     , removeTagType
                                                     , noAction
                                                     );

            dialog.ShowDialog();
        }
Beispiel #3
0
        //Handler for clicking the "Remove Image" button
        private void buttonRemoveImage_Click(object sender, EventArgs e)
        {
            ConfirmDialog confirm = new ConfirmDialog(Constants.STRING_YES
                                                      , Constants.STRING_NO
                                                      , Constants.STRING_IMAGE_REMOVE
                                                      , Constants.STRING_CONFIRM_TITLE
                                                      , removeImage
                                                      , noAction
                                                      );

            confirm.ShowDialog();
        }
Beispiel #4
0
        //Handler for clicking the "Remove Tag" button
        private void buttonRemoveTag_Click(object sender, EventArgs e)
        {
            //Confirm the removal
            ConfirmDialog confirm = new ConfirmDialog(Constants.STRING_YES
                                                      , Constants.STRING_NO
                                                      , Constants.STRING_TAG_REMOVE
                                                      , Constants.STRING_CONFIRM_TITLE
                                                      , removeTag
                                                      , noAction
                                                      );

            confirm.ShowDialog();
        }
Beispiel #5
0
        //Handler for clicking the "Remove Image" button
        private void buttonRemoveImage_Click( object sender, EventArgs e )
        {
            ConfirmDialog confirm = new ConfirmDialog( Constants.STRING_YES
                                                     , Constants.STRING_NO
                                                     , Constants.STRING_IMAGE_REMOVE
                                                     , Constants.STRING_CONFIRM_TITLE
                                                     , removeImage
                                                     , noAction
                                                     );

            confirm.ShowDialog();
        }
Beispiel #6
0
        //Handler for clicking the "Remove Tag" button
        private void buttonRemoveTag_Click( object sender, EventArgs e )
        {
            //Confirm the removal
            ConfirmDialog confirm = new ConfirmDialog( Constants.STRING_YES
                                                     , Constants.STRING_NO
                                                     , Constants.STRING_TAG_REMOVE
                                                     , Constants.STRING_CONFIRM_TITLE
                                                     , removeTag
                                                     , noAction
                                                     );

            confirm.ShowDialog();
        }