Beispiel #1
0
 internal static void OnViewCreated(object sender, JumonyViewEventArgs e)
 {
     if (ViewCreated != null)
     {
         ViewCreated(sender, e);
     }
 }
Beispiel #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);
        }