Example #1
0
 internal static void OnViewCreated(object sender, JumonyViewEventArgs e)
 {
     if (ViewCreated != null)
     {
         ViewCreated(sender, e);
     }
 }
Example #2
0
        /// <summary>
        /// 引发 ViewCreated 事件
        /// </summary>
        /// <param name="e"></param>
        protected virtual void OnViewCreated(JumonyViewEventArgs e)
        {
            if (ViewCreated != null)
            {
                ViewCreated(this, e);
            }

            MvcEnvironment.OnViewCreated(this, e);
        }
Example #3
0
        /// <summary>
        /// 引发 ViewCreated 事件
        /// </summary>
        /// <param name="e"></param>
        protected virtual void OnViewCreated( JumonyViewEventArgs e )
        {
            if ( ViewCreated != null )
            ViewCreated( this, e );

              MvcEnvironment.OnViewCreated( this, e );
        }
Example #4
0
 internal static void OnViewCreated( object sender, JumonyViewEventArgs e )
 {
     if ( ViewCreated != null )
     ViewCreated( sender, e );
 }