mirror of
https://github.com/Microsoft/calculator.git
synced 2025-08-22 14:13:30 -07:00
Fix XAML Warnings
Fix warnings of the XAML
This commit is contained in:
parent
f27bdba85a
commit
d2af1e512e
6 changed files with 19 additions and 1 deletions
|
@ -2352,7 +2352,6 @@
|
|||
Visibility="Collapsed"/>
|
||||
<Border x:Name="BorderElement"
|
||||
Grid.Row="1"
|
||||
Grid.RowSpan="1"
|
||||
Grid.Column="0"
|
||||
Grid.ColumnSpan="4"
|
||||
MinWidth="32"
|
||||
|
|
|
@ -166,6 +166,11 @@
|
|||
Style="{StaticResource ResultsScrollerSnapped}"
|
||||
AutomationProperties.AccessibilityView="Control">
|
||||
<Grid x:Name="ExpressionContent">
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition />
|
||||
<RowDefinition />
|
||||
<RowDefinition />
|
||||
</Grid.RowDefinitions>
|
||||
<TextBlock x:Name="EditableToken"
|
||||
Grid.Row="2"
|
||||
Margin="4,0,4,0"
|
||||
|
@ -409,6 +414,10 @@
|
|||
</UserControl.Resources>
|
||||
|
||||
<Grid AutomationProperties.LandmarkType="Main">
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition />
|
||||
<RowDefinition />
|
||||
</Grid.RowDefinitions>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition x:Name="ColumnMain"/>
|
||||
<ColumnDefinition x:Name="ColumnHistory"
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
<ColumnDefinition Width="1*" MaxWidth="80"/>
|
||||
<ColumnDefinition Width="1*" MaxWidth="80"/>
|
||||
<ColumnDefinition Width="1*" MaxWidth="80"/>
|
||||
<ColumnDefinition />
|
||||
</Grid.ColumnDefinitions>
|
||||
|
||||
<VisualStateManager.VisualStateGroups>
|
||||
|
|
|
@ -499,6 +499,7 @@
|
|||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="{StaticResource HamburgerHeightGridLength}"/>
|
||||
<RowDefinition/>
|
||||
<RowDefinition />
|
||||
</Grid.RowDefinitions>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="2*"/>
|
||||
|
|
|
@ -37,6 +37,10 @@
|
|||
<Grid Name="LayoutRoot"
|
||||
Background="{ThemeResource ToggleButtonBackground}"
|
||||
contract7Present:CornerRadius="{TemplateBinding CornerRadius}">
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition />
|
||||
<ColumnDefinition />
|
||||
</Grid.ColumnDefinitions>
|
||||
<VisualStateManager.VisualStateGroups>
|
||||
<VisualStateGroup x:Name="CommonStates">
|
||||
<VisualState x:Name="Normal"/>
|
||||
|
|
|
@ -513,6 +513,10 @@
|
|||
Grid.RowSpan="5"
|
||||
Grid.Column="0"
|
||||
Grid.ColumnSpan="4">
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition />
|
||||
<ColumnDefinition />
|
||||
</Grid.ColumnDefinitions>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="10*"/>
|
||||
<RowDefinition Height="7*"/>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue