Merge pull request #55 from nventive/dev/djo/seethrough-buttons

Fix Standard buttons showing through on other pages
This commit is contained in:
David Oliver 2019-05-25 21:49:29 -04:00 committed by GitHub
commit f9675074a2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,9 +9,11 @@
UseLayoutRounding="False" UseLayoutRounding="False"
mc:Ignorable=""> mc:Ignorable="">
<Grid> <Grid>
<!--Bind visibility as a workaround for nventive/Uno#925-->
<local:CalculatorStandardOperators x:Name="StandardOperators" <local:CalculatorStandardOperators x:Name="StandardOperators"
x:Load="{x:Bind Model.IsStandard, Mode=OneWay}" x:Load="{x:Bind Model.IsStandard, Mode=OneWay}"
IsEnabled="{x:Bind Model.IsStandard, Mode=OneWay}" IsEnabled="{x:Bind Model.IsStandard, Mode=OneWay}"
Visibility="{x:Bind Model.IsStandard, Mode=OneWay}"
TabIndex="17" /> TabIndex="17" />
<local:CalculatorScientificOperators x:Name="ScientificOperators" <local:CalculatorScientificOperators x:Name="ScientificOperators"