Skip to content

Commit

Permalink
Fixed scrolling of account list
Browse files Browse the repository at this point in the history
  • Loading branch information
edjo23 committed Jul 24, 2017
1 parent 9ff3237 commit 848599e
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Binary file added PointOfSale.RT/Assets/Logo Master.pdn
Binary file not shown.
Binary file added PointOfSale.RT/Assets/Logo.pdn
Binary file not shown.
2 changes: 1 addition & 1 deletion PointOfSale.RT/Package.appxmanifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/2010/manifest">
<Identity Name="5851e5f0-ec1a-45ad-b1a8-c7b371a3a677" Publisher="CN=Daniel" Version="1.0.0.15" />
<Identity Name="5851e5f0-ec1a-45ad-b1a8-c7b371a3a677" Publisher="CN=Daniel" Version="1.0.0.18" />
<Properties>
<DisplayName>PointOfSale.RT</DisplayName>
<PublisherDisplayName>Daniel</PublisherDisplayName>
Expand Down
2 changes: 1 addition & 1 deletion PointOfSale.RT/PointOfSale.RT.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<ProjectTypeGuids>{BC8A1FFA-BEE3-4634-8014-F334798102B3};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<PackageCertificateKeyFile>PointOfSale.RT_TemporaryKey.pfx</PackageCertificateKeyFile>
<AppxAutoIncrementPackageRevision>True</AppxAutoIncrementPackageRevision>
<PackageCertificateThumbprint>04584AE74B33E785AF0A2E47F1C48ACF8231ECBC</PackageCertificateThumbprint>
<PackageCertificateThumbprint>3C83BD9FB613050BE1FC110FA5397F6FD82EEF92</PackageCertificateThumbprint>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
Expand Down
Binary file modified PointOfSale.RT/PointOfSale.RT_TemporaryKey.pfx
Binary file not shown.
8 changes: 4 additions & 4 deletions PointOfSale.RT/Views/AccountsView.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,15 +76,15 @@
</Border>

<Border x:Name="MainArea" Grid.Row="2" Padding="0,0,10,10">
<ScrollViewer VerticalScrollMode="Disabled" ZoomMode="Disabled">
<ContentControl x:Name="Accounts" Height="{Binding ActualHeight, ElementName=MainArea }">
<ScrollViewer HorizontalScrollMode="Enabled" HorizontalScrollBarVisibility="Hidden" VerticalScrollMode="Disabled" VerticalScrollBarVisibility="Hidden" ZoomMode="Disabled">
<ContentControl x:Name="Accounts" Height="{Binding ActualHeight, ElementName=MainArea }">
<ContentControl.ContentTransitions>
<TransitionCollection>
<EntranceThemeTransition />
</TransitionCollection>
</ContentControl.ContentTransitions>
<ContentControl.ContentTemplate>
<DataTemplate>
<DataTemplate>
<ItemsControl ItemsSource="{Binding}" Margin="15,25,0,0" ItemTemplateSelector="{StaticResource AppDataTemplateSelector}">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
Expand All @@ -100,7 +100,7 @@
</Style>
</ItemsControl.ItemContainerStyle>
</ItemsControl>
</DataTemplate>
</DataTemplate>
</ContentControl.ContentTemplate>
</ContentControl>
</ScrollViewer>
Expand Down

0 comments on commit 848599e

Please sign in to comment.