Skip to content

Commit 31651f2

Browse files
authored
Merge pull request #1957 from rubberduck-vba/next
Remove aero2 for fixed release
2 parents dbfb5ce + 641a09d commit 31651f2

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

RetailCoder.VBE/Rubberduck.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,6 @@
256256
<Reference Include="PresentationCore" />
257257
<Reference Include="PresentationFramework" />
258258
<Reference Include="PresentationFramework.Aero" />
259-
<Reference Include="PresentationFramework.Aero2" />
260259
<Reference Include="ReachFramework" />
261260
<Reference Include="stdole, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
262261
<EmbedInteropTypes>False</EmbedInteropTypes>

RetailCoder.VBE/UI/SourceControl/SourceControlView.xaml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1-
<UserControl
1+
<UserControl x:Class="Rubberduck.UI.SourceControl.SourceControlView"
22
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
33
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
44
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
55
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
66
xmlns:themes="clr-namespace:Microsoft.Windows.Themes;assembly=PresentationFramework.Aero"
77
xmlns:sourceControl="clr-namespace:Rubberduck.UI.SourceControl"
88
xmlns:controls="clr-namespace:Rubberduck.UI.Controls"
9-
xmlns:Themes="clr-namespace:Microsoft.Windows.Themes;assembly=PresentationFramework.Aero2" x:Class="Rubberduck.UI.SourceControl.SourceControlView"
109
mc:Ignorable="d"
1110
d:DesignHeight="600" d:DesignWidth="300"
1211
d:DataContext="{d:DesignInstance {x:Type sourceControl:SourceControlViewViewModel}, IsDesignTimeCreatable=False}">
@@ -289,7 +288,7 @@
289288
<DockPanel x:Name="Header">
290289
<ContentPresenter ContentSource="Header" Margin="{TemplateBinding Padding}" RecognizesAccessKey="True" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}"/>
291290
<Popup x:Name="PART_Popup" AllowsTransparency="true" Focusable="false" HorizontalOffset="-1" IsOpen="{Binding IsSubmenuOpen, RelativeSource={RelativeSource TemplatedParent}}" PopupAnimation="{DynamicResource {x:Static SystemParameters.MenuPopupAnimationKey}}" Placement="Bottom">
292-
<Themes:SystemDropShadowChrome x:Name="Shdw" Color="Transparent">
291+
<themes:SystemDropShadowChrome x:Name="Shdw" Color="Transparent">
293292
<Border x:Name="SubMenuBorder" BorderBrush="{StaticResource ToolBarMenuBorder}" BorderThickness="1" Background="{StaticResource ToolBarSubMenuBackground}">
294293
<Grid>
295294
<Rectangle Fill="{StaticResource ToolBarSubMenuBackground}" HorizontalAlignment="Left" Height="1" Margin="0,-1,0,0" VerticalAlignment="Top" Width="{Binding ActualWidth, ElementName=Header}"/>
@@ -307,7 +306,7 @@
307306
</ScrollViewer>
308307
</Grid>
309308
</Border>
310-
</Themes:SystemDropShadowChrome>
309+
</themes:SystemDropShadowChrome>
311310
</Popup>
312311
</DockPanel>
313312
</Border>
@@ -380,7 +379,7 @@
380379
<ContentPresenter Grid.Column="0" ContentSource="Header" Margin="{TemplateBinding Padding}" RecognizesAccessKey="True" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}"/>
381380
<Path Grid.Column="1" DockPanel.Dock="Right" Data="{StaticResource RightArrow}" Fill="{TemplateBinding Foreground}" Margin="4,0,6,0" VerticalAlignment="Center"/>
382381
<Popup x:Name="PART_Popup" AllowsTransparency="true" Focusable="false" IsOpen="{Binding IsSubmenuOpen, RelativeSource={RelativeSource TemplatedParent}}" PopupAnimation="{DynamicResource {x:Static SystemParameters.MenuPopupAnimationKey}}" Placement="Right">
383-
<Themes:SystemDropShadowChrome x:Name="Shdw" Color="Transparent">
382+
<themes:SystemDropShadowChrome x:Name="Shdw" Color="Transparent">
384383
<Border x:Name="SubMenuBorder" BorderBrush="{StaticResource ToolBarMenuBorder}" BorderThickness="1" Background="{StaticResource ToolBarSubMenuBackground}" Grid.IsSharedSizeScope="true">
385384
<ScrollViewer x:Name="SubMenuScrollViewer" Style="{DynamicResource {ComponentResourceKey ResourceId=MenuScrollViewer, TypeInTargetAssembly={x:Type FrameworkElement}}}">
386385
<Grid RenderOptions.ClearTypeHint="Enabled">
@@ -395,7 +394,7 @@
395394
</Grid>
396395
</ScrollViewer>
397396
</Border>
398-
</Themes:SystemDropShadowChrome>
397+
</themes:SystemDropShadowChrome>
399398
</Popup>
400399
</Grid>
401400
<ControlTemplate.Triggers>

0 commit comments

Comments
 (0)