System.Windows.Forms.Control.FireValidated C# (CSharp) 메소드

FireValidated() 개인적인 메소드

private FireValidated ( ) : void
리턴 void
		internal virtual void FireValidated () {
			OnValidated (EventArgs.Empty);
		}

Usage Example

예제 #1
0
        private bool ValidateControl(Control c)
        {
            CancelEventArgs e = new CancelEventArgs();

            c.FireValidating(e);

            if (e.Cancel)
            {
                return(false);
            }

            c.FireValidated();
            return(true);
        }
All Usage Examples Of System.Windows.Forms.Control::FireValidated
Control