예제 #1
0
        public async void GetRid()
        {
            Instance  = null;
            prevIndex = CarouselView.Position;
            prevUID   = (BindingContext as ProjectCardViewModel)?.UID ?? string.Empty;
            RunAnimation(true);
            await Task.Delay(700);

            DialogNotifier.Complete();
        }
예제 #2
0
        private async void ConfirmButton_Clicked(object sender, EventArgs e)
        {
            MainSL.InputTransparent = true;
            await Task.WhenAll(new[]
            {
                MainSL.FadeTo(0, easing: Easing.CubicInOut),
                ThankSL.ScaleTo(1, 500, Easing.SpringOut),
                ThankSL.FadeTo(1, easing: Easing.CubicInOut),
            });

            await Task.Delay(800);

            DialogNotifier.Complete();
        }
예제 #3
0
 private void SaveButton_Clicked(object sender, EventArgs e) => DialogNotifier.Complete();
예제 #4
0
 private void SubmitButton_Clicked(object sender, EventArgs e)
 {
     completed = true;
     DialogNotifier.Complete();
 }
 void Handle_OK_Clicked(object sender, System.EventArgs e)
 {
     DialogNotifier.Complete();
 }
예제 #6
0
 void OK_Clicked(System.Object sender, System.EventArgs e)
 {
     DialogNotifier.Complete();
 }
 private void AcceptAndClose_Tapped(object sender, EventArgs e)
 {
     DialogNotifier.Complete();
 }
예제 #8
0
 private void ConfirmButton_Clicked(object sender, EventArgs e)
 {
     DialogNotifier.Complete();
 }
 void Handle_OK_Clicked(object sender, System.EventArgs e)
 {
     // send complete notification to the dialog.
     DialogNotifier.Complete();
 }