From 77e38e06912eee63d5a249df032e7dea7d948adc Mon Sep 17 00:00:00 2001 From: Savoy Schuler Date: Fri, 19 Apr 2019 11:43:23 -0700 Subject: [PATCH 1/6] Updated target to 19H1 and WinUI to version 2.1. --- VanArsdel/VanArsdel.csproj | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/VanArsdel/VanArsdel.csproj b/VanArsdel/VanArsdel.csproj index 4714f08..b5cff31 100644 --- a/VanArsdel/VanArsdel.csproj +++ b/VanArsdel/VanArsdel.csproj @@ -11,7 +11,7 @@ VanArsdel en-US UAP - 10.0.17763.0 + 10.0.18295.0 10.0.17763.0 14 512 @@ -604,10 +604,10 @@ - 6.1.9 + 6.2.8 - 2.0.181018003.1 + 2.2.190416008-prerelease 1.23.0 From 7309af0d3ea18ddb93c9a853a2c15655cfe9d7f2 Mon Sep 17 00:00:00 2001 From: Savoy Schuler Date: Sun, 21 Apr 2019 22:18:40 -0700 Subject: [PATCH 2/6] Added basic teaching tip to Store page's "Create your own" button. --- VanArsdel/Store/StorePage.xaml | 6 ++++++ VanArsdel/Store/StorePage.xaml.cs | 5 +++++ 2 files changed, 11 insertions(+) diff --git a/VanArsdel/Store/StorePage.xaml b/VanArsdel/Store/StorePage.xaml index 4930cec..589e9f3 100644 --- a/VanArsdel/Store/StorePage.xaml +++ b/VanArsdel/Store/StorePage.xaml @@ -6,6 +6,7 @@ xmlns:local="using:VanArsdel" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:model="using:VanArsdel.Model" + xmlns:winui="using:Microsoft.UI.Xaml.Controls" mc:Ignorable="d"> @@ -158,6 +159,11 @@ + + diff --git a/VanArsdel/Store/StorePage.xaml.cs b/VanArsdel/Store/StorePage.xaml.cs index dce3a9e..613d46d 100644 --- a/VanArsdel/Store/StorePage.xaml.cs +++ b/VanArsdel/Store/StorePage.xaml.cs @@ -59,5 +59,10 @@ public StoreViewModel ViewModel } #endregion + + private void AutoSaveTip_Loaded(object sender, RoutedEventArgs e) + { + StoreCustomizeTip.IsOpen = true; + } } } From 97c377bfe4fbb3167cc282360c0209c6e9b3f3b2 Mon Sep 17 00:00:00 2001 From: Savoy Schuler Date: Sun, 21 Apr 2019 22:58:29 -0700 Subject: [PATCH 3/6] Added tips about engraving and compact forms. --- VanArsdel/Store/ProductConfigurationPage.xaml | 16 +++++++++++++++- VanArsdel/Store/ProductConfigurationPage.xaml.cs | 5 +++++ VanArsdel/Store/StorePage.xaml | 11 +++++++++-- VanArsdel/Store/StorePage.xaml.cs | 7 ++++++- 4 files changed, 35 insertions(+), 4 deletions(-) diff --git a/VanArsdel/Store/ProductConfigurationPage.xaml b/VanArsdel/Store/ProductConfigurationPage.xaml index 42149e4..15c25e8 100644 --- a/VanArsdel/Store/ProductConfigurationPage.xaml +++ b/VanArsdel/Store/ProductConfigurationPage.xaml @@ -10,6 +10,7 @@ xmlns:devices="using:VanArsdel.Devices" xmlns:local="using:VanArsdel" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" + xmlns:winui="using:Microsoft.UI.Xaml.Controls" xmlns:shared="using:VanArsdel" d:DesignHeight="968" d:DesignWidth="1920" @@ -93,7 +94,20 @@ Margin="0,0,0,8" HorizontalAlignment="Stretch" Click="{x:Bind ViewModel.OnBeginPurchase}" - Style="{StaticResource AccentButtonStyle}" /> + Style="{StaticResource AccentButtonStyle}"> + + + + + + + diff --git a/VanArsdel/Store/StorePage.xaml.cs b/VanArsdel/Store/StorePage.xaml.cs index 5c1e762..a729e07 100644 --- a/VanArsdel/Store/StorePage.xaml.cs +++ b/VanArsdel/Store/StorePage.xaml.cs @@ -67,7 +67,7 @@ private void StoreCustomizeTip_Loaded(object sender, RoutedEventArgs e) private void StoreCustomizeTip_Closing(Microsoft.UI.Xaml.Controls.TeachingTip sender, Microsoft.UI.Xaml.Controls.TeachingTipClosingEventArgs args) { - EngraveTextTip.IsOpen = true; + //EngraveTextTip.IsOpen = true; } } } From 3a35ae2946f20a54140aa456f80bbc4ed3bc41a8 Mon Sep 17 00:00:00 2001 From: Yulia Klein Date: Thu, 25 Apr 2019 12:11:31 -0700 Subject: [PATCH 6/6] Added a custom Share button to the Engrave REB in the "create your own" flow --- .../PropertyInspector/PropertyInspector.xaml | 4 +- .../PropertyInspector.xaml.cs | 52 +++++++++++++++++++ VanArsdel/Resources/en-us/Resources.resw | 3 ++ 3 files changed, 58 insertions(+), 1 deletion(-) diff --git a/VanArsdel/PropertyInspector/PropertyInspector.xaml b/VanArsdel/PropertyInspector/PropertyInspector.xaml index 2ea0719..8c54773 100644 --- a/VanArsdel/PropertyInspector/PropertyInspector.xaml +++ b/VanArsdel/PropertyInspector/PropertyInspector.xaml @@ -222,7 +222,9 @@ HorizontalAlignment="Stretch" dls:RichEditBoxAttachedProperties.BindableText="{x:Bind Path=Value, Mode=OneWay}" Header="{x:Bind Path=Header, Mode=OneWay}" - TextChanged="{x:Bind Path=RichEditBox_TextChanged, Mode=OneWay}" /> + TextChanged="{x:Bind Path=RichEditBox_TextChanged, Mode=OneWay}" + Loaded="RichEditBox_Loaded" + Unloaded="RichEditBox_Unloaded"/> Year + + Engraving + \ No newline at end of file