Example #1
0
 private static void SINGLE_StepFade_SmoothStepDone(object sender, SmoothStepArgs e)
 {
     HWND.Opacity = 0;
     if (_shouldClose)
     {
         HWND.Close();
     }
     else
     {
         HWND.Hide(); HWND.Opacity = 1;
     }
 }
Example #2
0
 private static void SINGLE_StepFade_SmoothStepTick(object sender, SmoothStepArgs e)
 {
     HWND.Opacity = e.valueExact;
 }
Example #3
0
 private static void SINGLE_StepFade_SmoothStepStart(object sender, SmoothStepArgs e)
 {
     HWND.Opacity = 1;
 }
Example #4
0
 private static void SINGLE_StepShow_SmoothStepDone(object sender, SmoothStepArgs e)
 {
     HWND.Opacity = 1;
 }
Example #5
0
File: Step2D.cs Project: nirex0/NDC
 private void Step1_SmoothStepTick(object sender, SmoothStepArgs e)
 {
     vArgs.Set(vArgs.X, e.valueExact, vArgs.Z, vArgs.W);
     OnVTick();
 }
Example #6
0
File: Step2D.cs Project: nirex0/NDC
 private void Step1_SmoothStepDone(object sender, SmoothStepArgs e)
 {
     condition++;
     OnVDone();
 }