private async Task Button1CommandAction()
        {
            var dialog = new CustomMessageDialog
            {
                Title = this.Title,
                Message = this.Message,
                Button1Text = "Click Me Arial",
                FontFamily = new FontFamily("Arial"),
                FontWeight = FontWeights.Black
            };

            await dialog.ShowAsync();
        }
        private async Task Button2CommandAction()
        {
            var dialog = new CustomMessageDialog
            {
                Title = this.Title,
                Message = this.Message,
                ButtonBorderBrush = new SolidColorBrush().FromHex("#14f5a9"),
                ButtonForeground = new SolidColorBrush().FromHex("#babaca"),
                Button1Text = "Click Me",
                Button2Text = "Or Me!",
                FontFamily = new FontFamily("Arial")
            };

            await dialog.ShowAsync();
        }