2024-07-12 02:29:17 +02:00
|
|
|
|
using Wino.Core.Domain.Interfaces;
|
2024-04-18 01:44:37 +02:00
|
|
|
|
|
2024-07-12 02:29:17 +02:00
|
|
|
|
#if NET8_0
|
|
|
|
|
|
using Microsoft.UI.Xaml.Controls;
|
|
|
|
|
|
#else
|
|
|
|
|
|
using Windows.UI.Xaml.Controls;
|
|
|
|
|
|
#endif
|
2024-04-18 01:44:37 +02:00
|
|
|
|
namespace Wino.Dialogs
|
|
|
|
|
|
{
|
|
|
|
|
|
public sealed partial class StoreRatingDialog : ContentDialog, IStoreRatingDialog
|
|
|
|
|
|
{
|
|
|
|
|
|
public bool DontAskAgain { get; set; }
|
|
|
|
|
|
public bool RateWinoClicked { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public StoreRatingDialog()
|
|
|
|
|
|
{
|
|
|
|
|
|
this.InitializeComponent();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private void RateClicked(ContentDialog sender, ContentDialogButtonClickEventArgs args)
|
|
|
|
|
|
{
|
|
|
|
|
|
RateWinoClicked = true;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|