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