This commit is contained in:
Nikola Metulev 2017-08-30 21:02:36 -07:00
Родитель be4cee19de
Коммит ae6b335798
2 изменённых файлов: 8 добавлений и 2 удалений

Просмотреть файл

@ -39,7 +39,13 @@ namespace Microsoft.Toolkit.Uwp.SampleApp
{
InitializeComponent();
Suspending += OnSuspending;
HockeyClient.Current.Configure(string.Empty);
try
{
HockeyClient.Current.Configure(string.Empty);
}
catch
{
}
}
protected override async void OnActivated(IActivatedEventArgs args)

Просмотреть файл

@ -130,7 +130,7 @@
Visibility="{x:Bind local:About.VisibleIfCollectionEmpty(RecentSamples), Mode=OneWay}"></TextBlock>
<ItemsControl x:Name="RecentSamplesItemsControl"
ItemsPanel="{StaticResource ItemsWrapGridHorizontalTemplate}"
ItemsSource="{x:Bind RecentSamples, Mode=OneWay}" ItemTemplate="{StaticResource SampleTemplate}">
ItemsSource="{x:Bind RecentSamples, Mode=OneWay}" ItemTemplate="{StaticResource RecentSampleTemplate}">
</ItemsControl>
</Grid>