Пример #1
0
        /// <summary>
        ///     Pastes the contents of the clipboard into the current folder.
        /// </summary>
        public void PasteClipboard()
        {
            var contextMenu = new ShellContextMenu(ShellItem);

            contextMenu.InvokePaste();
        }
Пример #2
0
        /// <summary>
        /// Pastes the contents of the clipboard into the current folder.
        /// </summary>
        public void PasteClipboard()
        {
            ShellContextMenu contextMenu = new ShellContextMenu(m_CurrentFolder);

            contextMenu.InvokePaste();
        }
Пример #3
0
 /// <summary>
 /// Pastes the contents of the clipboard into the current folder.
 /// </summary>
 public void PasteClipboard()
 {
     ShellContextMenu contextMenu = new ShellContextMenu(m_CurrentFolder);
     contextMenu.InvokePaste();
 }