Tsukikage.WindowsUtil.WindowSubclassingMessageFilter.UnregisterProc C# (CSharp) 메소드

UnregisterProc() 공개 메소드

public UnregisterProc ( int msg, MessageProc proc ) : void
msg int
proc MessageProc
리턴 void
        public void UnregisterProc(int msg, MessageProc proc)
        {
            if (procs.ContainsKey(msg))
            {
                procs[msg] -= proc;
            }
        }