iSpyApplication.MainForm.SetMicrophoneEvents C# (CSharp) 메소드

SetMicrophoneEvents() 개인적인 메소드

private SetMicrophoneEvents ( VolumeLevel vw ) : void
vw VolumeLevel
리턴 void
        private void SetMicrophoneEvents(VolumeLevel vw)
        {
            vw.DoubleClick += VolumeControlDoubleClick;
            vw.MouseDown += VolumeControlMouseDown;
            vw.MouseUp += VolumeControlMouseUp;
            vw.MouseMove += VolumeControlMouseMove;
            vw.RemoteCommand += VolumeControlRemoteCommand;
            vw.Notification += ControlNotification;
            vw.FileListUpdated += VolumeControlFileListUpdated;
        }
MainForm