18 changed files
BExplorer/BetterExplorer | ||
_MainWindow | ||
MainWindow_Updating.cs | ||
app.manifest | ||
MainWindow.xaml | ||
Fluent.Ribbon-develop/Fluent.Ribbon | ||
Controls | ||
RibbonWindow.cs | ||
Metro/Controls | ||
WindowCommands.cs | ||
Themes | ||
Accents | ||
Amber.xaml | ||
GeneratorParameters.json | ||
Controls | ||
WindowCommands.xaml | ||
RibbonWindow.xaml | ||
Styles.xaml | ||
Fluent.Ribbon.NET 4.6.csproj | ||
Shell | ||
Interop | ||
User32.cs | ||
Extensions.cs | ||
ImageListEx.cs | ||
ShellContextMenu.cs | ||
ShellTreeViewEx.cs | ||
ShellViewEx.cs | ||
.gitignore | ||
MainWindow_Updating.cs
/BExplorer/BetterExplorer/_MainWindow/MainWindow_Updating.cs/BExplorer/BetterExplorer/_MainWindow/MainWindow_Updating.cs
Add comment 23
Add comment 24 <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
Add comment 25 <application>
Add comment 26 Minus <!-- Windows 10 -->
Add comment 27 Minus <supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}" />
Add comment 28 Minus <!-- Windows 8.1 -->
Add comment 29 Minus <supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}" />
Add comment 30 Minus <!-- Windows 8 -->
Add comment 31 Minus <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}" />
Add comment 32 Minus <!-- Windows 7 -->
Add comment 33 Minus <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}" />
Add comment 26 Plus <!-- A list of all Windows versions that this application is designed to work with. Windows will automatically select the most compatible environment.-->
Add comment 27 Plus <!--The ID below indicates application support for Windows Vista -->
Add comment 28 Plus <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
Add comment 29 Plus <!--The ID below indicates application support for Windows 7 -->
Add comment 30 Plus <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
Add comment 31 Plus <!--The ID below indicates application support for Windows 8 -->
Add comment 32 Plus <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>
Add comment 33 Plus <!--The ID below indicates application support for Windows 8.1 -->
Add comment 34 Plus <supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>
Add comment 35 Plus <!--The ID below indicates application support for Windows 10 -->
Add comment 36 Plus <supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>
Add comment 34 37 </application>
Add comment 35 38 </compatibility>
Add comment 36 39
Add comment 40 Plus <application xmlns="urn:schemas-microsoft-com:asm.v3">
Add comment 41 Plus <windowsSettings>
Add comment 42 Plus <!-- Per Monitor V1 [OS >= Windows 8.1] Values: False, True, Per-monitor, True/PM -->
Add comment 43 Plus <dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">True/PM</dpiAware>
Add comment 44 Plus <!-- Per Monitor V1 [OS >= Windows 10 Anniversary Update (1607, 10.0.14393, Redstone 1)] Values: Unaware, System, PerMonitor -->
Add comment 45 Plus <!-- Per Monitor V2 [OS >= Windows 10 Creators Update (1703, 10.0.15063, Redstone 2)] Value: PerMonitorV2 -->
Add comment 46 Plus <dpiAwareness xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">PerMonitorV2, PerMonitor, System</dpiAwareness>
Add comment 47 Plus <!-- If you want to see Windows crash with a kernel error trap, enable gdiScaling -->
Add comment 48 Plus <!--<gdiScaling xmlns="http://schemas.microsoft.com/SMI/2017/WindowsSettings">true</gdiScaling>-->
Add comment 49 Plus </windowsSettings>
Add comment 50 Plus </application>
Add comment 51 Plus
Add comment 37 52 <!-- Enable themes for Windows common controls and dialogs (Windows XP and later) -->
Add comment 38 53 <dependency>
Add comment 39 54 <dependentAssembly>
MainWindow.xaml
/BExplorer/BetterExplorer/MainWindow.xaml-3+4/BExplorer/BetterExplorer/MainWindow.xaml
Add comment 554 </Ribbon:Ribbon.QuickAccessItems>
Add comment 555 <Ribbon:Ribbon.Menu>
Add comment 556 <Ribbon:Backstage
Add comment 557 Minus x:Name="backstage"
Add comment 557 Plus x:Name="backstage" Margin="1,0,0,0"
Add comment 558 Ribbon:KeyTip.Keys="F"
Add comment 559 Background="DarkOrange"
Add comment 560 Header="Menu"
Add comment 4152 Grid.Row="4"
Add comment 4153 Grid.ColumnSpan="2"
Add comment 4154 Background="{DynamicResource WhiteBrush}"
Add comment 4155 Minus Margin="1,0,1,0">
Add comment 4155 Plus Margin="0">
Add comment 4156 <Grid.ColumnDefinitions>
Add comment 4157 <ColumnDefinition />
Add comment 4158 <ColumnDefinition x:Name="clPreviewSplitter" Width="2" />
Add comment 4169 Grid.ColumnSpan="3"
Add comment 4170 Width="{Binding ActualWidth, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type Grid}}}"
Add comment 4171 Height="{Binding ActualHeight, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type RowDefinition}}}"
Add comment 4172 Minus Margin="0" />
Add comment 4172 Plus Margin="0" Visibility="Collapsed"/>
Add comment 4173 <GridSplitter
Add comment 4174 Grid.Row="1"
Add comment 4175 Grid.ColumnSpan="3"
Add comment 4179 Background="LightBlue" />
Add comment 4180 <Grid
Add comment 4181 x:Name="TreeGrid"
Add comment 4182 Plus Margin="2,0,2,0"
Add comment 4182 4183 Grid.Row="2"
Add comment 4183 4184 Grid.Column="0"
Add comment 4184 4185 Background="{DynamicResource WhiteBrush}">
RibbonWindow.cs
/Fluent.Ribbon-develop/Fluent.Ribbon/Controls/RibbonWindow.cs/Fluent.Ribbon-develop/Fluent.Ribbon/Controls/RibbonWindow.cs
WindowCommands.cs
/Fluent.Ribbon-develop/Fluent.Ribbon/Metro/Controls/WindowCommands.cs/Fluent.Ribbon-develop/Fluent.Ribbon/Metro/Controls/WindowCommands.cs
Amber.xaml
/Fluent.Ribbon-develop/Fluent.Ribbon/Themes/Accents/Amber.xaml/Fluent.Ribbon-develop/Fluent.Ribbon/Themes/Accents/Amber.xaml
GeneratorParameters.json
/Fluent.Ribbon-develop/Fluent.Ribbon/Themes/Accents/GeneratorParameters.json/Fluent.Ribbon-develop/Fluent.Ribbon/Themes/Accents/GeneratorParameters.json
WindowCommands.xaml
/Fluent.Ribbon-develop/Fluent.Ribbon/Themes/Controls/WindowCommands.xaml/Fluent.Ribbon-develop/Fluent.Ribbon/Themes/Controls/WindowCommands.xaml
RibbonWindow.xaml
/Fluent.Ribbon-develop/Fluent.Ribbon/Themes/RibbonWindow.xaml/Fluent.Ribbon-develop/Fluent.Ribbon/Themes/RibbonWindow.xaml
Styles.xaml
/Fluent.Ribbon-develop/Fluent.Ribbon/Themes/Styles.xaml/Fluent.Ribbon-develop/Fluent.Ribbon/Themes/Styles.xaml
Fluent.Ribbon.NET 4.6.csproj
/Fluent.Ribbon-develop/Fluent.Ribbon/Fluent.Ribbon.NET 4.6.csproj/Fluent.Ribbon-develop/Fluent.Ribbon/Fluent.Ribbon.NET 4.6.csproj