Skip to content

Commit

Permalink
Fifth round of changes, switching to fast pass rendering; Fun fact: T…
Browse files Browse the repository at this point in the history
…he only holomorphic (complex differentiable) functions with a global maximum are constants, all other holomorphic functions have no global maximum besides on the domain boundary
  • Loading branch information
marcelwgn committed Mar 5, 2021
1 parent 6f89268 commit e4bf30b
Show file tree
Hide file tree
Showing 38 changed files with 196 additions and 196 deletions.
28 changes: 14 additions & 14 deletions dev/CommonStyles/TestUI/CornerRadiusPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@
</ListBox>
</Grid>
<Grid Grid.Row="5" Style="{StaticResource RightColumn}" VerticalAlignment="Center">
<TextBlock VerticalAlignment="Center">N/A</TextBlock>
<TextBlock VerticalAlignment="Center" Text="N/A"/>
</Grid>

<TextBlock Grid.Row="6" Text="ComboBox" Style="{StaticResource SideHeader}"/>
Expand Down Expand Up @@ -238,7 +238,7 @@
</CommandBar>
</Grid>
<Grid Grid.Row="11" Style="{StaticResource RightColumn}" VerticalAlignment="Center">
<TextBlock>N/A</TextBlock>
<TextBlock Text="N/A"/>
</Grid>

<TextBlock Grid.Row="12" Text="Flyout" Style="{StaticResource SideHeader}"/>
Expand Down Expand Up @@ -422,7 +422,7 @@
<ToggleSwitch/>
</Grid>
<Grid Grid.Row="20" Style="{StaticResource RightColumn}" VerticalAlignment="Center">
<TextBlock>N/A</TextBlock>
<TextBlock Text="N/A"/>
</Grid>

<TextBlock Grid.Row="21" Text="Slider" Style="{StaticResource SideHeader}"/>
Expand Down Expand Up @@ -500,7 +500,7 @@
</AppBar>
</Grid>
<Grid Grid.Row="25" Style="{StaticResource RightColumn}" VerticalAlignment="Center">
<TextBlock>N/A</TextBlock>
<TextBlock Text="N/A"/>
</Grid>

<TextBlock Grid.Row="26" Text="MenuBar" Style="{StaticResource SideHeader}"/>
Expand Down Expand Up @@ -572,7 +572,7 @@
<TextBlock Text="Hello World"/>
</Grid>
<Grid Grid.Row="32" Style="{StaticResource RightColumn}">
<TextBlock>N/A</TextBlock>
<TextBlock Text="N/A"/>
</Grid>

<TextBlock Grid.Row="33" Text="RichTextBlock" Style="{StaticResource SideHeader}"/>
Expand All @@ -584,7 +584,7 @@
</RichTextBlock>
</Grid>
<Grid Grid.Row="33" Style="{StaticResource RightColumn}">
<TextBlock>N/A</TextBlock>
<TextBlock Text="N/A"/>
</Grid>

<TextBlock Grid.Row="34" Text="CheckBox" Style="{StaticResource SideHeader}"/>
Expand Down Expand Up @@ -675,7 +675,7 @@
</StackPanel>
</Grid>
<Grid Grid.Row="40" Style="{StaticResource RightColumn}" VerticalAlignment="Center">
<TextBlock>N/A</TextBlock>
<TextBlock Text="N/A"/>
</Grid>

<TextBlock Grid.Row="41" Text="ToggleButton" Style="{StaticResource SideHeader}"/>
Expand All @@ -700,7 +700,7 @@
<controls:ToggleSplitButton.Flyout>
<Flyout>
<Flyout.Content>
<TextBlock>Hello World</TextBlock>
<TextBlock Text="Hello World"/>
</Flyout.Content>
</Flyout>
</controls:ToggleSplitButton.Flyout>
Expand All @@ -711,7 +711,7 @@
<controls:ToggleSplitButton.Flyout>
<Flyout>
<Flyout.Content>
<TextBlock>Hello World</TextBlock>
<TextBlock Text="Hello World"/>
</Flyout.Content>
</Flyout>
</controls:ToggleSplitButton.Flyout>
Expand All @@ -735,7 +735,7 @@
<HyperlinkButton Content="Hello World"/>
</Grid>
<Grid Grid.Row="44" Style="{StaticResource RightColumn}" VerticalAlignment="Center">
<TextBlock>N/A</TextBlock>
<TextBlock Text="N/A"/>
</Grid>

<TextBlock Grid.Row="45" Text="DropDownButton" Style="{StaticResource SideHeader}"/>
Expand All @@ -748,7 +748,7 @@
<controls:DropDownButton.Flyout>
<Flyout>
<Flyout.Content>
<TextBlock>Hello World</TextBlock>
<TextBlock Text="Hello World"/>
</Flyout.Content>
</Flyout>
</controls:DropDownButton.Flyout>
Expand All @@ -759,7 +759,7 @@
<controls:DropDownButton.Flyout>
<Flyout>
<Flyout.Content>
<TextBlock>Hello World</TextBlock>
<TextBlock Text="Hello World"/>
</Flyout.Content>
</Flyout>
</controls:DropDownButton.Flyout>
Expand All @@ -775,7 +775,7 @@
<controls:SplitButton.Flyout>
<Flyout>
<Flyout.Content>
<TextBlock>Hello World</TextBlock>
<TextBlock Text="Hello World"/>
</Flyout.Content>
</Flyout>
</controls:SplitButton.Flyout>
Expand All @@ -786,7 +786,7 @@
<controls:SplitButton.Flyout>
<Flyout>
<Flyout.Content>
<TextBlock>Hello World</TextBlock>
<TextBlock Text="Hello World"/>
</Flyout.Content>
</Flyout>
</controls:SplitButton.Flyout>
Expand Down
6 changes: 3 additions & 3 deletions dev/DropDownButton/TestUI/DropDownButtonPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,13 @@
<RowDefinition />
</Grid.RowDefinitions>

<TextBlock Grid.Row="0">Click count:</TextBlock>
<TextBlock Grid.Row="0" Text="Click count:"/>
<TextBlock x:Name="ClickCountTextBlock" AutomationProperties.Name="ClickCountTextBlock"
Margin="4,0,0,0" Text="0" Grid.Row="0" Grid.Column="1"/>
<TextBlock Grid.Row="1">Flyout opened:</TextBlock>
<TextBlock Grid.Row="1" Text="Flyout opened:"/>
<TextBlock x:Name="FlyoutOpenedCountTextBlock" AutomationProperties.Name="FlyoutOpenedCountTextBlock"
Margin="4,0,0,0" Text="0" Grid.Row="1" Grid.Column="1"/>
<TextBlock Grid.Row="2">Flyout closed:</TextBlock>
<TextBlock Grid.Row="2" Text="Flyout closed:"/>
<TextBlock x:Name="FlyoutClosedCountTextBlock" AutomationProperties.Name="FlyoutClosedCountTextBlock"
Margin="4,0,0,0" Text="0" Grid.Row="2" Grid.Column="1"/>
</Grid>
Expand Down
16 changes: 8 additions & 8 deletions dev/Expander/TestUI/ExpanderPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,43 +33,43 @@
<controls:Expander.Header>
<TextBlock Text="This expander is collapsed by default. This is a long title to test the header width. ext should be wrapping here." TextWrapping="Wrap" Margin="0,12,0,13"/>
</controls:Expander.Header>
<TextBlock AutomationProperties.AutomationId="CollapsedExpanderContent">Content</TextBlock>
<TextBlock AutomationProperties.AutomationId="CollapsedExpanderContent" Text="Content"/>
</controls:Expander>

<controls:Expander AutomationProperties.Name="ExpanderWithButtons" IsExpanded="False" Margin="12">
<controls:Expander.Header>
<ToggleButton>This is a toggle button in the header</ToggleButton>
</controls:Expander.Header>
<StackPanel>
<TextBlock TextWrapping="Wrap">Content. This is long content to test wrapping on the content section, this content should be wrapping.</TextBlock>
<TextBlock TextWrapping="Wrap" Text="Content. This is long content to test wrapping on the content section, this content should be wrapping."/>
</StackPanel>
</controls:Expander>

<controls:Expander AutomationProperties.Name="ExpanderWithUpwardsDirection" ExpandDirection="Up" IsExpanded="False" Margin="12">
<controls:Expander.Header>
<TextBlock Margin="0,0,0,1">This expander will expand upwards</TextBlock>
<TextBlock Margin="0,0,0,1" Text="This expander will expand upwards"/>
</controls:Expander.Header>
<StackPanel>
<TextBlock>Content</TextBlock>
<TextBlock Text="Content"/>
</StackPanel>
</controls:Expander>

<controls:Expander IsEnabled="False" AutomationProperties.Name="ExpanderNotEnabled" ExpandDirection="Down" IsExpanded="False" Margin="12">
<controls:Expander.Header>
<TextBlock Margin="0,0,0,1">This expander is not enabled</TextBlock>
<TextBlock Margin="0,0,0,1" Text="This expander is not enabled"/>
</controls:Expander.Header>
<StackPanel>
<TextBlock>Content</TextBlock>
<TextBlock Text="Content"/>
</StackPanel>
</controls:Expander>

<local:TestControl IsTabStop="True" x:Name="CustomControl" AutomationProperties.Name="CustomControl" Margin="12">
<controls:Expander x:Name="ExpanderWithCustomEventsSource" ExpandDirection="Down" IsExpanded="False">
<controls:Expander.Header>
<TextBlock Margin="0,0,0,1">This expander has a custom events source</TextBlock>
<TextBlock Margin="0,0,0,1" Text="This expander has a custom events source"/>
</controls:Expander.Header>
<StackPanel>
<TextBlock>Content</TextBlock>
<TextBlock Text="Content"/>
</StackPanel>
</controls:Expander>
</local:TestControl>
Expand Down
2 changes: 1 addition & 1 deletion dev/InfoBar/TestUI/InfoBarPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
</ScrollViewer>

<StackPanel Grid.Column="1" Orientation="Vertical" HorizontalAlignment="Left" Margin="20,0,0,0">
<TextBlock>Events:</TextBlock>
<TextBlock Text="Events:"/>
<ListBox x:Name="EventListBox" AutomationProperties.Name="EventListBox" MinWidth="150" MaxHeight="380">
<ListBox.Resources>
<Style TargetType="ListBoxItem">
Expand Down
8 changes: 4 additions & 4 deletions dev/Materials/Acrylic/TestUI/AcrylicBrushPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,22 +84,22 @@
<ToggleButton x:Name="AnimateBackgroundButton" Content="Animate Background" Checked="AnimateBackgroundButton_Checked" Unchecked="AnimateBackgroundButton_Unchecked"/>

<StackPanel Orientation="Vertical">
<TextBlock VerticalAlignment="Top" FontSize="12">TintOpacity:</TextBlock>
<TextBlock VerticalAlignment="Top" FontSize="12" Text="TintOpacity:"/>
<Slider x:Name="TintOpacity" Width="200" Minimum="0.0" Maximum="1.0" StepFrequency="0.05" Value="0.6" HorizontalAlignment="Left" ToolTipService.ToolTip="Adjust Tint Opacity" ValueChanged="TintOpacity_ValueChanged" />
</StackPanel>
<StackPanel Orientation="Vertical">
<TextBlock VerticalAlignment="Top" FontSize="12">TintLuminosityOpacity:</TextBlock>
<TextBlock VerticalAlignment="Top" FontSize="12" Text="TintLuminosityOpacity:"/>
<StackPanel Orientation="Horizontal">
<Slider x:Name="TintLuminosityOpacity" Width="200" Minimum="0.0" Maximum="2.0" StepFrequency="0.01" Value="0.9" HorizontalAlignment="Left" ToolTipService.ToolTip="Adjust Luminosity Blend Opacity" ValueChanged="TintLuminosityOpacity_ValueChanged" />
<CheckBox x:Name="AutoTintLuminosityOpacity" Content="Auto" Margin="10,0,0,0" Checked="AutoTintLuminosityOpacity_IsCheckedChanged" Unchecked="AutoTintLuminosityOpacity_IsCheckedChanged" />
</StackPanel>
</StackPanel>
<StackPanel Orientation="Vertical">
<TextBlock VerticalAlignment="Top" FontSize="12">Rectangle Size:</TextBlock>
<TextBlock VerticalAlignment="Top" FontSize="12" Text="Rectangle Size:"/>
<Slider x:Name="SizeSlider" Width="200" Minimum="1" Maximum="800" StepFrequency="10" Value="300" HorizontalAlignment="Left" ToolTipService.ToolTip="Adjust Rectangle Size"/>
</StackPanel>
<StackPanel Orientation="Vertical">
<TextBlock VerticalAlignment="Top" FontSize="12">ScaleTransform:</TextBlock>
<TextBlock VerticalAlignment="Top" FontSize="12" Text="ScaleTransform:"/>
<Slider x:Name="ScaleTransformSlider" Width="200" Minimum="0.1" Maximum="3" StepFrequency="0.1" Value="1" HorizontalAlignment="Left" ToolTipService.ToolTip="Adjust Rectangle ScaleTransform"/>
</StackPanel>
<Viewbox x:Name="Viewbox"/>
Expand Down
4 changes: 2 additions & 2 deletions dev/NavigationView/TestUI/Common/NavigationViewInitPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@

<StackPanel Orientation="Vertical">
<StackPanel Orientation="Horizontal">
<TextBlock Margin="5" HorizontalAlignment="Center" VerticalAlignment="Center">ItemInvoked Arguments (InvokedItem | InvokedItemContainer):</TextBlock>
<TextBlock Margin="5" HorizontalAlignment="Center" VerticalAlignment="Center" Text="ItemInvoked Arguments (InvokedItem | InvokedItemContainer):"/>
<TextBox Margin="42,0,0,0" x:Name="ItemInvokedItemType" AutomationProperties.Name="ItemInvokedItemType" Text="N/A"/>
<TextBox x:Name="ItemInvokedItemContainerType" AutomationProperties.Name="ItemInvokedItemContainerType" Text="N/A"/>
</StackPanel>
<StackPanel Orientation="Horizontal">
<TextBlock Margin="5" HorizontalAlignment="Center" VerticalAlignment="Center">SelectionChanged Arguments (SelectedItem | SelectedItemContainer):</TextBlock>
<TextBlock Margin="5" HorizontalAlignment="Center" VerticalAlignment="Center" Text="SelectionChanged Arguments (SelectedItem | SelectedItemContainer):"/>
<TextBox x:Name="SelectionChangedItemType" AutomationProperties.Name="SelectionChangedItemType" Text="N/A"/>
<TextBox x:Name="SelectionChangedItemContainerType" AutomationProperties.Name="SelectionChangedItemContainerType" Text="N/A"/>
</StackPanel>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,22 @@
<muxcontrols:NavigationView.MenuItems>
<muxcontrols:NavigationViewItem HorizontalContentAlignment="Center" Icon="Find" Tag="find" IsSelected="True">
<Border Background="Red">
<TextBlock>Center</TextBlock>
<TextBlock Text="Center"/>
</Border>
</muxcontrols:NavigationViewItem>
<muxcontrols:NavigationViewItem HorizontalContentAlignment="Left" Icon="Find" Tag="find" IsSelected="True">
<Border Background="Red">
<TextBlock>Left</TextBlock>
<TextBlock Text="Left"/>
</Border>
</muxcontrols:NavigationViewItem>
<muxcontrols:NavigationViewItem HorizontalContentAlignment="Right" Icon="Find" Tag="find" IsSelected="True">
<Border Background="Red">
<TextBlock>Right</TextBlock>
<TextBlock Text="Right"/>
</Border>
</muxcontrols:NavigationViewItem>
<muxcontrols:NavigationViewItem HorizontalContentAlignment="Stretch" Icon="Find" Tag="find" IsSelected="True">
<Border Background="Red">
<TextBlock>Stretch</TextBlock>
<TextBlock Text="Stretch"/>
</Border>
</muxcontrols:NavigationViewItem>

Expand Down
Loading

0 comments on commit e4bf30b

Please sign in to comment.