Inheritance: System.EventArgs
Example #1
0
        protected virtual void OnFrameShow(NiWindowShowEventArgs e)
        {
            var ev = FrameShow;

            if (ev != null)
            {
                ev(this, e);
            }
        }
Example #2
0
 protected virtual void OnFrameShow(NiWindowShowEventArgs e)
 {
     var ev = FrameShow;
     if (ev != null)
         ev(this, e);
 }