Remove force converting to lowercase titles of table section

This commit is contained in:
Ivan Matkov 2017-11-27 16:25:49 +03:00
Родитель cd0f0eed35
Коммит 32b87ff908
6 изменённых файлов: 29 добавлений и 7 удалений

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

@ -5,4 +5,11 @@
xmlns:local="using:Contoso.Forms.Demo.UWP"
RequestedTheme="Light">
<!-- Remove force converting to lowercase titles of table section. -->
<Application.Resources>
<DataTemplate x:Key="TableSection">
<TextBlock Margin="0,20,0,0" Text="{Binding Title}" Style="{ThemeResource SubtitleTextBlockStyle}" Visibility="{Binding Text,RelativeSource={RelativeSource Mode=Self},Converter={StaticResource CollapseWhenEmpty}}" />
</DataTemplate>
</Application.Resources>
</Application>

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

@ -15,7 +15,7 @@
</Resources>
<Applications>
<Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="Contoso.Forms.Demo.UWP.App">
<uap:VisualElements DisplayName="AppCenter-Contoso.Forms.Demo.UWP" Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png" Description="Contoso.Forms.Demo.UWP" BackgroundColor="transparent">
<uap:VisualElements DisplayName="AppCenter Demo UWP" Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png" Description="Contoso.Forms.Demo.UWP" BackgroundColor="transparent">
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png">
</uap:DefaultTile>
<uap:SplashScreen Image="Assets\SplashScreen.png" BackgroundColor="white" />

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

@ -1,5 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<TabbedPage Title="App Center Demo App" xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:local="clr-namespace:Contoso.Forms.Demo;assembly=Contoso.Forms.Demo" x:Class="Contoso.Forms.Demo.MainDemoPage">
<TabbedPage Title="AppCenter Demo Application"
xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:Contoso.Forms.Demo;assembly=Contoso.Forms.Demo"
x:Class="Contoso.Forms.Demo.MainDemoPage">
<local:AppCenterContentPage />
<local:AnalyticsContentPage />
<local:CrashesContentPage />

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

@ -5,4 +5,11 @@
xmlns:local="using:Contoso.Forms.Puppet.UWP"
RequestedTheme="Light">
<!-- Remove force converting to lowercase titles of table section. -->
<Application.Resources>
<DataTemplate x:Key="TableSection">
<TextBlock Margin="0,20,0,0" Text="{Binding Title}" Style="{ThemeResource SubtitleTextBlockStyle}" Visibility="{Binding Text,RelativeSource={RelativeSource Mode=Self},Converter={StaticResource CollapseWhenEmpty}}" />
</DataTemplate>
</Application.Resources>
</Application>

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

@ -15,7 +15,7 @@
</Resources>
<Applications>
<Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="Contoso.Forms.Puppet.UWP.App">
<uap:VisualElements DisplayName="AppCenter-Contoso.Forms.Puppet.UWP" Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png" Description="Contoso.Forms.Puppet.UWP" BackgroundColor="transparent">
<uap:VisualElements DisplayName="AppCenter Puppet UWP" Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png" Description="Contoso.Forms.Puppet.UWP" BackgroundColor="white">
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png">
</uap:DefaultTile>
<uap:SplashScreen Image="Assets\SplashScreen.png" BackgroundColor="white" />

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

@ -1,8 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<TabbedPage Title="App Center Puppet App" xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:local="clr-namespace:Contoso.Forms.Puppet;assembly=Contoso.Forms.Puppet" x:Class="Contoso.Forms.Puppet.MainPuppetPage">
<TabbedPage Title="AppCenter Puppet Application"
xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:Contoso.Forms.Puppet;assembly=Contoso.Forms.Puppet"
x:Class="Contoso.Forms.Puppet.MainPuppetPage">
<local:AppCenterContentPage/>
<local:AnalyticsContentPage/>
<local:CrashesContentPage/>
<local:AnalyticsContentPage/>
<local:CrashesContentPage/>
<local:CustomPropertiesContentPage/>
<local:OthersContentPage/>
<local:OthersContentPage/>
</TabbedPage>