|
@@ -95,28 +95,28 @@ namespace PDF_Master.ViewModels.Dialog.ServiceDialog
|
|
|
public string TextSubscriptionBenefit
|
|
|
{
|
|
|
get { return _TextSubscriptionBenefit; }
|
|
|
- set { _TextSubscriptionBenefit = value; }
|
|
|
+ set { SetProperty(ref _TextSubscriptionBenefit, value); }
|
|
|
}
|
|
|
|
|
|
private string _TextSavewithout;
|
|
|
public string TextSavewithout
|
|
|
{
|
|
|
get { return _TextSavewithout; }
|
|
|
- set { _TextSavewithout = value; }
|
|
|
+ set { SetProperty(ref _TextSavewithout, value); }
|
|
|
}
|
|
|
|
|
|
private string _TextWhenyou;
|
|
|
public string TextWhenyou
|
|
|
{
|
|
|
get { return _TextWhenyou; }
|
|
|
- set { _TextWhenyou = value; }
|
|
|
+ set { SetProperty(ref _TextWhenyou, value); }
|
|
|
}
|
|
|
|
|
|
private string _TextConvertPDF;
|
|
|
public string TextConvertPDF
|
|
|
{
|
|
|
get { return _TextConvertPDF; }
|
|
|
- set { _TextConvertPDF = value; }
|
|
|
+ set { SetProperty(ref _TextConvertPDF, value); }
|
|
|
}
|
|
|
|
|
|
|
|
@@ -124,28 +124,28 @@ namespace PDF_Master.ViewModels.Dialog.ServiceDialog
|
|
|
public string TextConvertPDFto
|
|
|
{
|
|
|
get { return _TextConvertPDFto; }
|
|
|
- set { _TextConvertPDFto = value; }
|
|
|
+ set { SetProperty(ref _TextConvertPDFto, value); }
|
|
|
}
|
|
|
|
|
|
private string _TextAIassitant;
|
|
|
public string TextAIassitant
|
|
|
{
|
|
|
get { return _TextAIassitant; }
|
|
|
- set { _TextAIassitant = value; }
|
|
|
+ set { SetProperty(ref _TextAIassitant, value); }
|
|
|
}
|
|
|
|
|
|
private string _TextSupportAI;
|
|
|
public string TextSupportAI
|
|
|
{
|
|
|
get { return _TextSupportAI; }
|
|
|
- set { _TextSupportAI = value; }
|
|
|
+ set { SetProperty(ref _TextSupportAI, value); }
|
|
|
}
|
|
|
|
|
|
private string _BtnTextSavewithWatermark;
|
|
|
public string BtnTextSavewithWatermark
|
|
|
{
|
|
|
get { return _BtnTextSavewithWatermark; }
|
|
|
- set { _BtnTextSavewithWatermark = value; }
|
|
|
+ set { SetProperty(ref _BtnTextSavewithWatermark, value); }
|
|
|
}
|
|
|
|
|
|
|
|
@@ -153,7 +153,7 @@ namespace PDF_Master.ViewModels.Dialog.ServiceDialog
|
|
|
public string Textoff
|
|
|
{
|
|
|
get { return _Textoff; }
|
|
|
- set { _Textoff = value; }
|
|
|
+ set { SetProperty(ref _Textoff, value); }
|
|
|
}
|
|
|
|
|
|
|
|
@@ -161,7 +161,7 @@ namespace PDF_Master.ViewModels.Dialog.ServiceDialog
|
|
|
public string BtnTextSubscribe
|
|
|
{
|
|
|
get { return _BtnTextSubscribe; }
|
|
|
- set { _BtnTextSubscribe = value; }
|
|
|
+ set { SetProperty(ref _BtnTextSubscribe, value); }
|
|
|
}
|
|
|
|
|
|
|
|
@@ -192,10 +192,8 @@ namespace PDF_Master.ViewModels.Dialog.ServiceDialog
|
|
|
TextConvertPDFto = App.ServiceLoader.GetString("TextConvertPDFto");
|
|
|
TextAIassitant = App.ServiceLoader.GetString("TextAIassitant");
|
|
|
TextSupportAI = App.ServiceLoader.GetString("TextSupportAI");
|
|
|
- BtnTextSavewithWatermark = App.ServiceLoader.GetString("BtnTextSavewithWatermark");
|
|
|
Textoff = App.ServiceLoader.GetString("Textoff");
|
|
|
BtnTextSubscribe = App.ServiceLoader.GetString("BtnTextSubscribe");
|
|
|
-
|
|
|
}
|
|
|
|
|
|
|
|
@@ -318,6 +316,14 @@ namespace PDF_Master.ViewModels.Dialog.ServiceDialog
|
|
|
LeftBtnVis = Visibility.Collapsed;
|
|
|
RightBtnWidth = 280;
|
|
|
}
|
|
|
+ if (open == "Auto")
|
|
|
+ {
|
|
|
+ BtnTextSavewithWatermark = App.ServiceLoader.GetString("BtnTextContinue");
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ BtnTextSavewithWatermark = App.ServiceLoader.GetString("BtnTextSavewithWatermark");
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
}
|