コード例 #1
0
        public void StartOperation(IBindCtx pbcReserved)
        {
            inOperation = true;

            if (!reportedSuccess)
            {
                reportedSuccess = true;
                DropSuccess?.Invoke(this, null);
            }
        }
コード例 #2
0
        public void StartOperation([In] IBindCtx pbcReserved)
        {
            asyncInOperation = true;

            if (isDragDropData)
            {
                DropSuccess?.Invoke(this, new EventArgs());
                return;
            }

            if (storedFiles != null)
            {
                FilesPasted?.Invoke(this, new EventArgs());
            }
        }