예제 #1
0
 void Controller_SomethingCreated(object sender, ElementEventArgs e)
 {
 }
예제 #2
0
        /// <summary>
        /// invoke the SomethingCreated event
        /// </summary>
        /// <param name="source">aspect which invokes this event</param>
        /// <param name="ea"></param>
        internal static void InvokeSomethingCreated(LaosAspect sender , ElementEventArgs ea)
        {
            if (SomethingCreated == null) return;

            SomethingCreated.Invoke(sender, ea);
        }