Reporter |
|
---|---|
Created | Apr 7, 2018 2:15:57 PM |
Updated | Apr 7, 2018 2:15:57 PM |
Subsystem | XAML |
Assignee | Olga Lukianova (olka) |
Priority | Critical |
State | Open |
Type | Bug |
Fix version | No Fix versions |
Affected versions | No Affected versions |
Fixed In Version ReSharper | Undefined |
VsVersion | All Versions |
use solution from RSRP-469152
open GeodatabaseTransactions.xaml in UWP context (note, in iOs and Android it is ok)
see Invalid type: expected type is 'Color', actual type is 'OnPlatform<Color>'
open GeodatabaseTransactions.xaml in UWP context (note, in iOs and Android it is ok)
see Invalid type: expected type is 'Color', actual type is 'OnPlatform<Color>'
<Label x:Name="MessageTextBlock"
Grid.Row="3" Grid.ColumnSpan="4"
Text="Generating local geodatabase ..."
TextColor="Blue" FontSize="Micro"
VerticalOptions="FillAndExpand" HorizontalOptions="FillAndExpand"
Margin="5"
LineBreakMode="CharacterWrap">
<Label.TextColor>
<OnPlatform x:TypeArguments="Color">
<OnPlatform.Platforms>
<On Platform="iOS" Value="Blue" />
<On Platform="Android" Value="White" />
<On Platform="UWP" Value="Blue" />
</OnPlatform.Platforms>
</OnPlatform>
</Label.TextColor>
</Label>