BExplorer.Shell.ShellNotificationListener.NotificationWindow.NotificationWindow C# (CSharp) Метод

NotificationWindow() публичный Метод

public NotificationWindow ( ShellNotificationListener parent ) : System
parent ShellNotificationListener
Результат System
			public NotificationWindow(ShellNotificationListener parent) {
				SHChangeNotifyEntry notify = new SHChangeNotifyEntry();
				notify.pidl = ShellItem.Desktop.Pidl;
				notify.fRecursive = true;
				m_NotifyId = Shell32.SHChangeNotifyRegister(this.Handle,
					SHCNRF.InterruptLevel | SHCNRF.ShellLevel,
					SHCNE.ALLEVENTS, WM_SHNOTIFY, 1, ref notify);
				m_Parent = parent;
			}
ShellNotificationListener.NotificationWindow