예제 #1
0
 internal void CallCommand(CommandEventArgs e)
 {
     if (command.InvocationList != null)
     {
         command.InvocationList(this, e);
     }
 }
예제 #2
0
 internal void RaiseTestSetup(string name)
 {
     if (testSetup.InvocationList != null)
     {
         testSetup.InvocationList(null, new TestSetupEventArgs()
         {
             Name = name
         });
     }
 }
예제 #3
0
        internal RenderEventArgs CallRender()
        {
            RenderEventArgs e = null;

            if (render.InvocationList != null)
            {
                e = new RenderEventArgs();
                render.InvocationList(null, e);
            }
            return(e);
        }
예제 #4
0
 internal void RaiseTestReady(string name)
 {
     if (testReady.InvocationList != null)
     {
         testReady.InvocationList(null,
                                  new TestReadyEventArgs()
         {
             Name = name, Root = realHost.LastGeneratedView as FrameworkElement
         });
     }
 }