コード例 #1
0
        /// <summary>
        /// <see cref = "CreatingDesktop" /> 이벤트를 발생시킵니다.
        /// Raises the <see cref="CreatingDesktop"/> event.
        /// </summary>
        /// <param name="e">
        /// The event arguments.
        /// </param>
        protected virtual void OnCreatingDesktop(CreatingDesktopEventArgs e)
        {
            var ev = this.CreatingDesktop;

            if (ev != null)
            {
                ev(this, e);
            }
        }