예제 #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;
     }
 }
예제 #2
0
 private static void SINGLE_StepFade_SmoothStepTick(object sender, SmoothStepArgs e)
 {
     HWND.Opacity = e.valueExact;
 }
예제 #3
0
 private static void SINGLE_StepFade_SmoothStepStart(object sender, SmoothStepArgs e)
 {
     HWND.Opacity = 1;
 }
예제 #4
0
 private static void SINGLE_StepShow_SmoothStepDone(object sender, SmoothStepArgs e)
 {
     HWND.Opacity = 1;
 }
예제 #5
0
파일: Step2D.cs 프로젝트: nirex0/NDC
 private void Step1_SmoothStepTick(object sender, SmoothStepArgs e)
 {
     vArgs.Set(vArgs.X, e.valueExact, vArgs.Z, vArgs.W);
     OnVTick();
 }
예제 #6
0
파일: Step2D.cs 프로젝트: nirex0/NDC
 private void Step1_SmoothStepDone(object sender, SmoothStepArgs e)
 {
     condition++;
     OnVDone();
 }