26 changed files
BExplorer/BetterExplorer | ||
themes | ||
generic.xaml | ||
BetterExplorer.csproj | ||
MainWindow.xaml | ||
MainWindow.xaml.cs | ||
BreadcrumbBar | ||
BreadcrumbBar | ||
ApplyPropertiesEventArgs.cs + | ||
BreadcrumbBar.cs + | ||
BreadcrumbButton.cs + | ||
BreadcrumbItem.cs + | ||
BreadcrumbItemEventArgs.cs + | ||
PathConversionEventArgs.cs + | ||
Common | ||
AeroChrome.cs + | ||
Properties | ||
AssemblyInfo.cs + | ||
Resources.Designer.cs + | ||
Resources.resx + | ||
Settings.Designer.cs + | ||
Settings.settings + | ||
Themes | ||
Generic.xaml + | ||
app.config + | ||
Odyssey.Controls.csproj + | ||
Shell | ||
Interop | ||
ShellThumbnail.cs | ||
ShellItem.cs | ||
ShellTreeViewEx.cs | ||
ShellViewEx.cs | ||
WpfControlLibrary1 | ||
AirspacePopup.cs | ||
BreadcrumbBarControl.xaml.cs | ||
BExplorer.sln | ||
generic.xaml
/BExplorer/BetterExplorer/themes/generic.xaml+527/BExplorer/BetterExplorer/themes/generic.xaml
Displayed content is truncated due to maximum viewable content limit.
Add comment 2 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
Add comment 3 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Add comment 4 xmlns:local="clr-namespace:BetterExplorer"
Add comment 5 Plus xmlns:odc="clr-namespace:Odyssey.Controls;assembly=Odyssey"
Add comment 5 6 xmlns:Microsoft_Windows_Themes="clr-namespace:Microsoft.Windows.Themes;assembly=PresentationFramework.Aero"
Add comment 6 7 >
Add comment 7 8
Add comment 361 362 </Setter>
Add comment 362 363 </Style>-->
Add comment 363 364
Add comment 365 Plus <LinearGradientBrush x:Key="mouseOverBtnBrush" StartPoint="0,0" EndPoint="0,1">
Add comment 366 Plus <GradientStop Color="#FFEAF6FD" Offset="0"/>
Add comment 367 Plus <GradientStop Color="#FFD7EFFC" Offset="0.5"/>
Add comment 368 Plus <GradientStop Color="#FFBDE6FD" Offset="0.5"/>
Add comment 369 Plus <GradientStop Color="#FFA6D9F4" Offset="1"/>
Add comment 370 Plus </LinearGradientBrush>
Add comment 371 Plus <LinearGradientBrush x:Key="mousePressedBtnBrush" StartPoint="0,0" EndPoint="0,1">
Add comment 372 Plus <GradientStop Color="#FFC2E4F6" Offset="0"/>
Add comment 373 Plus <GradientStop Color="#FFC2E4F6" Offset="0.5"/>
Add comment 374 Plus <GradientStop Color="#FFA9D9F2" Offset="0.5"/>
Add comment 375 Plus <GradientStop Color="#FF90CBEB" Offset="1"/>
Add comment 376 Plus </LinearGradientBrush>
Add comment 377 Plus <LinearGradientBrush x:Key="GradientBorderBrush" StartPoint="0,0" EndPoint="0,1">
Add comment 378 Plus <GradientStop Color="White" Offset="0" />
Add comment 379 Plus <GradientStop Color="#FFCECECE" Offset="1" />
Add comment 380 Plus </LinearGradientBrush>
Add comment 381 Plus <SolidColorBrush x:Key="borderBrush" Color="#C0000000"/>
Add comment 382 Plus <SolidColorBrush x:Key="borderShadowBrush" Color="#60000000"/>
Add comment 383 Plus <BooleanToVisibilityConverter x:Key="boolToVisible"/>
Add comment 384 Plus <ImageSourceConverter x:Key="imgConverter"/>
Add comment 385 Plus
Add comment 386 Plus <Geometry x:Key="RightArrow">M0,0 L5,3.5 0,7 z</Geometry>
Add comment 387 Plus <Geometry x:Key="DownArrow">M0,3 L7,3 3.5,7 z</Geometry>
Add comment 388 Plus <Geometry x:Key="OverflowArrow">F1 M7,0 L4,3 7,6 M3,0 L0,3 3,6</Geometry>
Add comment 389 Plus
Add comment 390 Plus <!--DropDownButtonTemplate-->
Add comment 391 Plus <ControlTemplate TargetType="{x:Type ToggleButton}" x:Key="DropDownButtonTemplate">
Add comment 392 Plus <odc:AeroChrome SnapsToDevicePixels="True" Focusable="False" x:Name="chrome"
Add comment 393 Plus BorderBrush="{StaticResource borderBrush}"
Add comment 394 Plus BorderThickness="1"
Add comment 395 Plus RenderMouseOver="{TemplateBinding IsMouseOver}"
Add comment 396 Plus RenderPressed="{TemplateBinding IsPressed}" >
Add comment 397 Plus <odc:AeroChrome.Content>
Add comment 398 Plus <Path x:Name="arrow" Data="{StaticResource DownArrow}" SnapsToDevicePixels="True" VerticalAlignment="Center" HorizontalAlignment="Center" Fill="Black" Focusable="False"/>
Add comment 399 Plus </odc:AeroChrome.Content>
Add comment 400 Plus </odc:AeroChrome>
Add comment 401 Plus <ControlTemplate.Triggers>
Add comment 402 Plus <Trigger Property="IsFocused" Value="True">
Add comment 403 Plus <Setter TargetName="chrome" Property="RenderMouseOver" Value="True"/>
Add comment 404 Plus </Trigger>
Add comment 405 Plus </ControlTemplate.Triggers>
Add comment 406 Plus </ControlTemplate>
Add comment 407 Plus
Add comment 408 Plus <!--ButtonTemplate-->
Add comment 409 Plus <ControlTemplate TargetType="{x:Type Button}" x:Key="ButtonTemplate">
Add comment 410 Plus <Border Margin="-1,-1,0,-1" BorderBrush="{StaticResource borderBrush}" BorderThickness="1" Background="Transparent" SnapsToDevicePixels="True" Focusable="False">
Add comment 411 Plus <odc:AeroChrome SnapsToDevicePixels="True" x:Name="chrome" Focusable="False"
Add comment 412 Plus BorderBrush="{StaticResource borderBrush}"
Add comment 413 Plus BorderThickness="1"
Add comment 414 Plus Margin="-1"
Add comment 415 Plus RenderMouseOver="{TemplateBinding IsMouseOver}"
Add comment 416 Plus RenderPressed="{TemplateBinding IsPressed}"
Add comment 417 Plus Content="{TemplateBinding Content}"/>
Add comment 418 Plus </Border>
Add comment 419 Plus <ControlTemplate.Triggers>
Add comment 420 Plus <Trigger Property="IsFocused" Value="True">
Add comment 421 Plus <Setter TargetName="chrome" Property="RenderMouseOver" Value="True"/>
Add comment 422 Plus </Trigger>
Add comment 423 Plus </ControlTemplate.Triggers>
Add comment 424 Plus </ControlTemplate>
Add comment 425 Plus
Add comment 426 Plus <!--BreadcrumbItem-->
Add comment 427 Plus <Style TargetType="{x:Type odc:BreadcrumbItem}">
Add comment 428 Plus <Setter Property="Focusable" Value="False"/>
Add comment 429 Plus <Setter Property="BorderBrush" Value="{StaticResource borderBrush}"/>
Add comment 430 Plus <Setter Property="Template">
Add comment 431 Plus <Setter.Value>
Add comment 432 Plus <ControlTemplate TargetType="{x:Type odc:BreadcrumbItem}">
Add comment 433 Plus <Border Background="Transparent" Focusable="False"
Add comment 434 Plus BorderBrush="{TemplateBinding BorderBrush}"
Add comment 435 Plus BorderThickness="{TemplateBinding BorderThickness}">
Add comment 436 Plus <DockPanel>
Add comment 437 Plus <odc:BreadcrumbButton x:Name="PART_Header"
Add comment 438 Plus DataContext="{Binding}"
Add comment 439 Plus IsImageVisible="{TemplateBinding IsRoot}"
Add comment 440 Plus IsButtonVisible="{TemplateBinding IsButtonVisible}"
Add comment 441 Plus ItemTemplate="{TemplateBinding OverflowItemTemplate}"
Add comment 442 Plus ItemTemplateSelector="{TemplateBinding OverflowItemTemplateSelector}"
Add comment 443 Plus IsDropDownPressed="{Binding IsDropDownPressed, RelativeSource={RelativeSource TemplatedParent},Mode=TwoWay}"
Add comment 444 Plus SelectedItem="{Binding SelectedItem, RelativeSource={RelativeSource TemplatedParent},Mode=TwoWay}"
Add comment 445 Plus Image ="{TemplateBinding Image}"
Add comment 446 Plus Header="{TemplateBinding Header}" ItemsSource="{Binding Items, RelativeSource={RelativeSource TemplatedParent}}">
Add comment 447 Plus </odc:BreadcrumbButton>
Add comment 448 Plus <ContentControl x:Name="PART_Selected" Focusable="False" Content="{TemplateBinding SelectedBreadcrumb}" />
Add comment 449 Plus </DockPanel>
Add comment 450 Plus </Border>
Add comment 451 Plus <ControlTemplate.Triggers>
Add comment 452 Plus <Trigger Property="IsRoot" Value="True">
Add comment 453 Plus <Setter Property="EnableVisualButtonStyle" Value="False" TargetName="PART_Header"/>
Add comment 454 Plus </Trigger>
Add comment 455 Plus
Add comment 456 Plus </ControlTemplate.Triggers>
Add comment 457 Plus </ControlTemplate>
Add comment 458 Plus </Setter.Value>
Add comment 459 Plus </Setter>
Add comment 460 Plus </Style>
Add comment 461 Plus
Add comment 462 Plus <ControlTemplate x:Key="progressBarTemplate" TargetType="ProgressBar"
Add comment 463 Plus xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
Add comment 464 Plus xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Add comment 465 Plus xmlns:s="clr-namespace:System;assembly=mscorlib">
Add comment 466 Plus <Grid Name="Background" SnapsToDevicePixels="True">
Add comment 467 Plus <Rectangle Name="PART_Track" Margin="1,1,1,1" />
Add comment 468 Plus <Decorator Name="PART_Indicator" Margin="1,1,1,1" HorizontalAlignment="Left">
Add comment 469 Plus <Grid Name="Foreground">
Add comment 470 Plus <Grid.ColumnDefinitions>
Add comment 471 Plus <ColumnDefinition MaxWidth="15" />
Add comment 472 Plus <ColumnDefinition Width="0.1*" />
Add comment 473 Plus <ColumnDefinition MaxWidth="15" />
Add comment 474 Plus </Grid.ColumnDefinitions>
Add comment 475 Plus <Grid.RowDefinitions>
Add comment 476 Plus <RowDefinition />
Add comment 477 Plus <RowDefinition />
Add comment 478 Plus </Grid.RowDefinitions>
Add comment 479 Plus <Rectangle Fill="{TemplateBinding TextElement.Foreground}" Name="Indicator" Grid.ColumnSpan="3" Grid.RowSpan="2" />
Add comment 480 Plus <Rectangle Fill="{TemplateBinding TextElement.Foreground}" Name="Animation" OpacityMask="{x:Null}" Grid.ColumnSpan="3" Grid.RowSpan="2" />
Add comment 481 Plus <Rectangle Name="LeftDark" Margin="1,1,0,1" Grid.RowSpan="2">
Add comment 482 Plus <Rectangle.Fill>
Add comment 483 Plus <LinearGradientBrush StartPoint="0,0" EndPoint="1,0">
Add comment 484 Plus <LinearGradientBrush.GradientStops>
Add comment 485 Plus <GradientStop Color="#0C000000" Offset="0" />
Add comment 486 Plus <GradientStop Color="#20000000" Offset="0.3" />
Add comment 487 Plus <GradientStop Color="#00000000" Offset="1" />
Add comment 488 Plus </LinearGradientBrush.GradientStops>
Add comment 489 Plus </LinearGradientBrush>
Add comment 490 Plus </Rectangle.Fill>
Add comment 491 Plus </Rectangle>
Add comment 492 Plus <Rectangle RadiusX="1" RadiusY="1" Name="RightDark" Margin="0,1,1,1" Grid.Column="2" Grid.RowSpan="2">
Add comment 493 Plus <Rectangle.Fill>
Add comment 494 Plus <LinearGradientBrush StartPoint="0,0" EndPoint="1,0">
Add comment 495 Plus <LinearGradientBrush.GradientStops>
Add comment 496 Plus <GradientStop Color="#00000000" Offset="0" />
Add comment 497 Plus <GradientStop Color="#20000000" Offset="0.7" />
Add comment 498 Plus <GradientStop Color="#0C000000" Offset="1" />
Add comment 499 Plus </LinearGradientBrush.GradientStops>
Add comment 500 Plus </LinearGradientBrush>
Add comment 501 Plus </Rectangle.Fill>
Add comment 502 Plus </Rectangle>
Add comment 503 Plus <Rectangle Name="LeftLight" Grid.Column="0" Grid.Row="2">
Add comment 504 Plus <Rectangle.Fill>
Add comment 505 Plus <RadialGradientBrush RadiusX="1" RadiusY="1" RelativeTransform="1,0,0,1,0.5,0.5">
Add comment 506 Plus <RadialGradientBrush.GradientStops>
Add comment 507 Plus <GradientStop Color="#60FFFFC4" Offset="0" />
Add comment 508 Plus <GradientStop Color="#00FFFFC4" Offset="1" />
Add comment 509 Plus </RadialGradientBrush.GradientStops>
Add comment 510 Plus </RadialGradientBrush>
Add comment 511 Plus </Rectangle.Fill>
Add comment 512 Plus </Rectangle>
Add comment 513 Plus <Rectangle Name="CenterLight" Grid.Column="1" Grid.Row="2">
Add comment 514 Plus <Rectangle.Fill>
Add comment 515 Plus <LinearGradientBrush StartPoint="0,1" EndPoint="0,0">
Add comment 516 Plus <LinearGradientBrush.GradientStops>
Add comment 517 Plus <GradientStop Color="#60FFFFC4" Offset="0" />
Add comment 518 Plus <GradientStop Color="#00FFFFC4" Offset="1" />
Add comment 519 Plus </LinearGradientBrush.GradientStops>
Add comment 520 Plus </LinearGradientBrush>
Add comment 521 Plus </Rectangle.Fill>
Add comment 522 Plus </Rectangle>
Add comment 523 Plus <Rectangle Name="RightLight" Grid.Column="2" Grid.Row="2">
Add comment 524 Plus <Rectangle.Fill>
Add comment 525 Plus <RadialGradientBrush RadiusX="1" RadiusY="1" RelativeTransform="1,0,0,1,-0.5,0.5">
Add comment 526 Plus <RadialGradientBrush.GradientStops>
Add comment 527 Plus <GradientStop Color="#60FFFFC4" Offset="0" />
Add comment 528 Plus <GradientStop Color="#00FFFFC4" Offset="1" />
Add comment 529 Plus </RadialGradientBrush.GradientStops>
Add comment 530 Plus </RadialGradientBrush>
Add comment 531 Plus </Rectangle.Fill>
Add comment 532 Plus </Rectangle>
Add comment 533 Plus <Border Name="Highlight1" Grid.ColumnSpan="3" Grid.RowSpan="2">
Add comment 534 Plus <Border.Background>
Add comment 535 Plus <LinearGradientBrush StartPoint="0,0" EndPoint="0,1">
Add comment 536 Plus <LinearGradientBrush.GradientStops>
Add comment 537 Plus <GradientStop Color="#90FFFFFF" Offset="0.5385" />
Add comment 538 Plus <GradientStop Color="#00FFFFFF" Offset="0.5385" />
Add comment 539 Plus </LinearGradientBrush.GradientStops>
Add comment 540 Plus </LinearGradientBrush>
Add comment 541 Plus </Border.Background>
Add comment 542 Plus </Border>
Add comment 543 Plus <Border Name="Highlight2" Grid.ColumnSpan="3" Grid.RowSpan="2">
Add comment 544 Plus <Border.Background>
Add comment 545 Plus <LinearGradientBrush StartPoint="0,0" EndPoint="0,1">
Add comment 546 Plus <LinearGradientBrush.GradientStops>
Add comment 547 Plus <GradientStop Color="#80FFFFFF" Offset="0.05" />
Add comment 548 Plus <GradientStop Color="#00FFFFFF" Offset="0.25" />
Add comment 549 Plus </LinearGradientBrush.GradientStops>
Add comment 550 Plus </LinearGradientBrush>
Add comment 551 Plus </Border.Background>
Add comment 552 Plus </Border>
Add comment 553 Plus </Grid>
Add comment 554 Plus </Decorator>
Add comment 555 Plus <Border BorderThickness="{TemplateBinding Border.BorderThickness}" BorderBrush="{TemplateBinding Border.BorderBrush}" />
Add comment 556 Plus </Grid>
Add comment 557 Plus </ControlTemplate>
Add comment 558 Plus
Add comment 559 Plus
Add comment 560 Plus <!--BreadcrumbBar-->
Add comment 561 Plus <Style TargetType="{x:Type odc:BreadcrumbBar}">
Add comment 562 Plus <Setter Property="MinHeight" Value="23"/>
Add comment 563 Plus <Setter Property="Background" Value="#A0FFFFFF"/>
Add comment 564 Plus <Setter Property="BorderBrush" Value="{StaticResource borderBrush}"/>
Add comment 565 Plus <Setter Property="Template">
Add comment 566 Plus <Setter.Value>
Add comment 567 Plus <ControlTemplate TargetType="{x:Type odc:BreadcrumbBar}">
Add comment 568 Plus <ControlTemplate.Resources>
Add comment 569 Plus <Style TargetType="{x:Type Button}">
Add comment 570 Plus <Setter Property="Template" Value="{StaticResource ButtonTemplate}"/>
Add comment 571 Plus <Setter Property="MinWidth" Value="21"/>
Add comment 572 Plus <Setter Property="BorderThickness" Value="1"/>
Add comment 573 Plus <Setter Property="FocusVisualStyle" Value="{x:Null}"/>
Add comment 574 Plus <Setter Property="BorderBrush" Value="Black"/>
Add comment 575 Plus <Setter Property="Focusable" Value="{Binding Focusable, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type odc:BreadcrumbBar}}}"/>
Add comment 576 Plus </Style>
Add comment 577 Plus <Style TargetType="{x:Type odc:BreadcrumbButton}">
Add comment 578 Plus <Setter Property="Focusable" Value="{Binding Focusable, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type odc:BreadcrumbBar}}}"/>
Add comment 579 Plus </Style>
Add comment 580 Plus </ControlTemplate.Resources>
Add comment 581 Plus <Border Background="{TemplateBinding Background}" SnapsToDevicePixels="True"
Add comment 582 Plus BorderBrush="{TemplateBinding BorderBrush}"
Add comment 583 Plus Focusable="False"
Add comment 584 Plus BorderThickness="{TemplateBinding BorderThickness}">
Add comment 585 Plus <Border BorderBrush="White" BorderThickness="{TemplateBinding BorderThickness}" Focusable="False" SnapsToDevicePixels="True">
Add comment 586 Plus <Grid Margin="-1">
Add comment 587 Plus <Grid.ColumnDefinitions>
Add comment 588 Plus <ColumnDefinition Width="Auto"/>
Add comment 589 Plus <ColumnDefinition Width="*"/>
Add comment 590 Plus <ColumnDefinition Width="Auto"/>
Add comment 591 Plus <ColumnDefinition Width="Auto"/>
Add comment 592 Plus </Grid.ColumnDefinitions>
Add comment 593 Plus <ProgressBar x:Name="progress" Grid.Column="0" Grid.ColumnSpan="4"
Add comment 594 Plus Maximum="{Binding ProgressMaximum,RelativeSource={RelativeSource TemplatedParent}}"
Add comment 595 Plus Minimum="{Binding ProgressMinimum,RelativeSource={RelativeSource TemplatedParent}}"
Add comment 596 Plus Value="{Binding ProgressValue,RelativeSource={RelativeSource TemplatedParent}}"
Add comment 597 Plus Background="Transparent"
Add comment 598 Plus BorderThickness="0"
Add comment 599 Plus Template="{StaticResource progressBarTemplate}"/>
Add comment 600 Plus <odc:BreadcrumbButton ItemsSource="{TemplateBinding CollapsedTraces}" Grid.Column="0"
Add comment 601 Plus x:Name="PART_Root"
Add comment 602 Plus MinWidth="0"
Add comment 603 Plus EnableVisualButtonStyle="False"
Add comment 604 Plus Mode="{TemplateBinding OverflowMode}"
Add comment 605 Plus SelectedItem="{Binding SelectedItem,RelativeSource={RelativeSource TemplatedParent},Mode=TwoWay}"
Add comment 606 Plus ItemTemplate="{TemplateBinding OverflowItemTemplate}"
Add comment 607 Plus IsImageVisible="True"
Add comment 608 Plus Image="{Binding SelectedBreadcrumb.Image, RelativeSource={RelativeSource TemplatedParent}}"
Add comment 609 Plus ItemTemplateSelector="{TemplateBinding OverflowItemTemplateSelector}"
Add comment 610 Plus IsDropDownPressed="{Binding IsOverflowPressed,RelativeSource={RelativeSource TemplatedParent}, Mode=TwoWay}" >
Add comment 611 Plus </odc:BreadcrumbButton>
Add comment 612 Plus <ContentPresenter x:Name="container" Grid.Column="1" Content="{Binding RootItem,RelativeSource={RelativeSource TemplatedParent}}"/>
Add comment 613 Plus <ToggleButton x:Name="dropDown" Grid.Column="2"
Add comment 614 Plus Focusable="False"
Add comment 615 Plus Width="16"
Add comment 616 Plus Visibility="Collapsed"
Add comment 617 Plus FocusVisualStyle="{x:Null}"
Add comment 618 Plus Template="{StaticResource DropDownButtonTemplate}"
Add comment 619 Plus ClickMode="Press"
Add comment 620 Plus IsChecked="{Binding IsDropDownOpen,RelativeSource={RelativeSource TemplatedParent},Mode=TwoWay}"
Add comment 621 Plus Margin="-1"
Add comment 622 Plus BorderThickness="1"
Add comment 623 Plus BorderBrush="{StaticResource borderBrush}" />
Add comment 624 Plus <ComboBox x:Name="PART_ComboBox"
Add comment 625 Plus Visibility="Hidden"
Add comment 626 Plus Margin="0,0,0,0"
Add comment 627 Plus IsEditable="True"
Add comment 628 Plus Focusable="True"
Add comment 629 Plus ItemTemplate="{TemplateBinding DropDownItemTemplate}"
Add comment 630 Plus ItemTemplateSelector="{TemplateBinding DropDownItemTemplateSelector}"
Add comment 631 Plus ItemsSource="{Binding DropDownItems,RelativeSource={RelativeSource TemplatedParent}}"
Add comment 632 Plus BorderThickness="0"
Add comment 633 Plus Grid.Column="0"
Add comment 634 Plus SelectedIndex="{Binding SelectedDropDownIndex,RelativeSource={RelativeSource TemplatedParent},Mode=TwoWay}"
Add comment 635 Plus Grid.ColumnSpan="3"/>
Add comment 636 Plus <ItemsControl x:Name="buttons" Grid.Column="3" Margin="1,0,-1,0" ItemsSource="{Binding Buttons,RelativeSource={RelativeSource TemplatedParent} }" Focusable="False" >
Add comment 637 Plus <ItemsControl.ItemsPanel>
Add comment 638 Plus <ItemsPanelTemplate>
Add comment 639 Plus <StackPanel Orientation="Horizontal" IsItemsHost="True"/>
Add comment 640 Plus </ItemsPanelTemplate>
Add comment 641 Plus </ItemsControl.ItemsPanel>
Add comment 642 Plus </ItemsControl>
Add comment 643 Plus </Grid>
Add comment 644 Plus </Border>
Add comment 645 Plus </Border>
Add comment 646 Plus <ControlTemplate.Triggers>
Add comment 647 Plus <Trigger Property="Visibility" Value="Visible" SourceName="PART_ComboBox">
Add comment 648 Plus <!--hide the breadcrumb container and root button if the combobox is visible, otherwise a breadcrumb button could get the focus on mouseover: -->
Add comment 649 Plus <Setter Property="Visibility" Value="Hidden" TargetName="container"/>
Add comment 650 Plus <Setter Property="Visibility" Value="Hidden" TargetName="PART_Root"/>
Add comment 651 Plus </Trigger>
Add comment 652 Plus <Trigger Property="IsRootSelected" Value="True">
Add comment 653 Plus <Setter Property="Visibility" Value="Collapsed" TargetName="PART_Root"/>
Add comment 654 Plus </Trigger>
Add comment 655 Plus <Trigger Property="IsMouseOver" Value="True">
Add comment 656 Plus <Trigger.EnterActions>
Add comment 657 Plus <BeginStoryboard>
Add comment 658 Plus <Storyboard>
Add comment 659 Plus <ColorAnimation Duration="0:0:0.3" To="White" Storyboard.TargetProperty="Background.Color"/>
Add comment 660 Plus </Storyboard>
Add comment 661 Plus </BeginStoryboard>
Add comment 662 Plus </Trigger.EnterActions>
Add comment 663 Plus <Trigger.ExitActions>
Add comment 664 Plus <BeginStoryboard>
Add comment 665 Plus <Storyboard>
Add comment 666 Plus <ColorAnimation Duration="0:0:0.3" From="White" Storyboard.TargetProperty="Background.Color"/>
Add comment 667 Plus </Storyboard>
Add comment 668 Plus </BeginStoryboard>
Add comment 669 Plus </Trigger.ExitActions>
Add comment 670 Plus </Trigger>
Add comment 671 Plus <Trigger Property="HasDropDownItems" Value="True">
Add comment 672 Plus <Setter Property="Visibility" Value="Visible" TargetName="dropDown"/>
Add comment 673 Plus </Trigger>
Add comment 674 Plus </ControlTemplate.Triggers>
Add comment 675 Plus </ControlTemplate>
Add comment 676 Plus </Setter.Value>
Add comment 677 Plus </Setter>
Add comment 678 Plus </Style>
Add comment 679 Plus
Add comment 680 Plus <!--BreadcrumbButton-->
Add comment 681 Plus <Style TargetType="{x:Type odc:BreadcrumbButton}">
Add comment 682 Plus <Setter Property="BorderThickness" Value="1"/>
Add comment 683 Plus <Setter Property="BorderBrush" Value="Transparent"/>
Add comment 684 Plus <Setter Property="Background" Value="{StaticResource mouseOverBtnBrush}"/>
Add comment 685 Plus <Setter Property="FocusVisualStyle" Value="{x:Null}"/>
Add comment 686 Plus <Setter Property="Template">
Add comment 687 Plus
Add comment 688 Plus <Setter.Value>
Add comment 689 Plus <ControlTemplate TargetType="{x:Type odc:BreadcrumbButton}">
Add comment 690 Plus <Grid Margin="{TemplateBinding Padding}">
Add comment 691 Plus <Grid.ColumnDefinitions>
Add comment 692 Plus <ColumnDefinition Width="Auto"/>
Add comment 693 Plus <ColumnDefinition Width="Auto"/>
Add comment 694 Plus </Grid.ColumnDefinitions>
Add comment 695 Plus <odc:AeroChrome Grid.Column="0"
Add comment 696 Plus Visibility="Visible"
Add comment 697 Plus x:Name="button"
Add comment 698 Plus Focusable="False"
Add comment 699 Plus Margin="-1"
Add comment 700 Plus BorderThickness="1"
Add comment 701 Plus RenderPressed="{TemplateBinding IsPressed}"
Add comment 702 Plus RenderMouseOver="{TemplateBinding IsMouseOver}">
Add comment 703 Plus <odc:AeroChrome.Content>
Add comment 704 Plus <StackPanel Orientation="Horizontal">
Add comment 705 Plus <Image x:Name="image" Source="{Binding Image, RelativeSource={RelativeSource TemplatedParent}}" Width="16" Height="16" Stretch="Fill"/>
Add comment 706 Plus <ContentPresenter Content="{TemplateBinding Header}" ContentTemplate="{TemplateBinding HeaderTemplate}" Margin="2,0,2,0"/>
Add comment 707 Plus </StackPanel>
Add comment 708 Plus </odc:AeroChrome.Content>
Add comment 709 Plus </odc:AeroChrome>
Add comment 710 Plus
Add comment 711 Plus <!--Content="{TemplateBinding Header}"/>-->
Add comment 712 Plus <odc:AeroChrome Grid.Column="1" x:Name="PART_DropDown"
Add comment 713 Plus Focusable="False"
Add comment 714 Plus MinWidth="16"
Add comment 715 Plus Margin="-1"
Add comment 716 Plus BorderThickness="1"
Add comment 717 Plus RenderPressed="{TemplateBinding IsDropDownPressed}"
Add comment 718 Plus RenderMouseOver="{TemplateBinding IsMouseOver}"
Add comment 719 Plus ContentTemplate="{TemplateBinding DropDownContentTemplate}"
Add comment 720 Plus >
Add comment 721 Plus <odc:AeroChrome.Content>
Add comment 722 Plus <Path x:Name="dropDownPath" Fill="Black" Data="{StaticResource RightArrow}" SnapsToDevicePixels="True" HorizontalAlignment="Center"/>
Add comment 723 Plus </odc:AeroChrome.Content>
Add comment 724 Plus <odc:AeroChrome.ContextMenu>
Add comment 725 Plus <ContextMenu x:Name="PART_Menu"
Add comment 726 Plus IsTextSearchEnabled="True"
Add comment 727 Plus HorizontalOffset="-14"
Add comment 728 Plus ItemContainerStyle="{x:Null}"
Add comment 729 Plus IsOpen="{Binding IsDropDownPressed, RelativeSource={RelativeSource TemplatedParent},Mode=TwoWay}">
Add comment 730 Plus <ContextMenu.Template>
Add comment 731 Plus <ControlTemplate TargetType="ContextMenu" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:mwt="clr-namespace:Microsoft.Windows.Themes;assembly=PresentationFramework.Aero">
Add comment 732 Plus <mwt:SystemDropShadowChrome Color="#00FFFFFF" Name="Shdw" SnapsToDevicePixels="True" MaxHeight="400">
Add comment 733 Plus <Border BorderThickness="{TemplateBinding Border.BorderThickness}" BorderBrush="{TemplateBinding Border.BorderBrush}" Background="{TemplateBinding Panel.Background}">
Add comment 734 Plus <Grid>
Add comment 735 Plus <Rectangle RadiusX="2" RadiusY="2" Fill="#FFF1F1F1" Width="22" Margin="2,2,2,2" HorizontalAlignment="Left" />
Add comment 736 Plus <Rectangle Fill="#FFE2E3E3" Width="1" Margin="25,2,0,2" HorizontalAlignment="Left" />
Add comment 737 Plus <Rectangle Fill="#FFFFFFFF" Width="1" Margin="26,2,0,2" HorizontalAlignment="Left" />
Add comment 738 Plus <ScrollViewer CanContentScroll="True" Margin="1,0,1,0" Grid.ColumnSpan="2" VerticalScrollBarVisibility="Auto" >
Add comment 739 Plus <ItemsPresenter Margin="{TemplateBinding Control.Padding}" SnapsToDevicePixels="{TemplateBinding UIElement.SnapsToDevicePixels}" KeyboardNavigation.DirectionalNavigation="Cycle" />
Add comment 740 Plus </ScrollViewer>
Add comment 741 Plus </Grid>
Add comment 742 Plus </Border>
Add comment 743 Plus </mwt:SystemDropShadowChrome>
Add comment 744 Plus <ControlTemplate.Triggers>
Add comment 745 Plus <Trigger Property="ContextMenuService.HasDropShadow">
Add comment 746 Plus <Setter Property="FrameworkElement.Margin" TargetName="Shdw">
Add comment 747 Plus <Setter.Value>
Add comment 748 Plus <Thickness>0,0,5,5</Thickness>
Add comment 749 Plus </Setter.Value>
Add comment 750 Plus </Setter>
Add comment 751 Plus <Setter Property="mwt:SystemDropShadowChrome.Color" TargetName="Shdw">
Add comment 752 Plus <Setter.Value>
Add comment 753 Plus <Color>#71000000</Color>
Add comment 754 Plus </Setter.Value>
Add comment 755 Plus </Setter>
Add comment 756 Plus <Trigger.Value>
Add comment 757 Plus <s:Boolean>True</s:Boolean>
Add comment 758 Plus </Trigger.Value>
Add comment 759 Plus </Trigger>
Add comment 760 Plus </ControlTemplate.Triggers>
Add comment 761 Plus </ControlTemplate>
Add comment 762 Plus </ContextMenu.Template>
Add comment 763 Plus </ContextMenu>
Add comment 764 Plus </odc:AeroChrome.ContextMenu>
Add comment 765 Plus </odc:AeroChrome>
Add comment 766 Plus </Grid>
Add comment 767 Plus <ControlTemplate.Triggers>
Add comment 768 Plus <Trigger Property="IsImageVisible" Value="False">
Add comment 769 Plus <Setter Property="Visibility" Value="Collapsed" TargetName="image"/>
Add comment 770 Plus </Trigger>
Add comment 771 Plus <Trigger Property="Image" Value="{x:Null}">
Add comment 772 Plus <Setter Property="Visibility" Value="Collapsed" TargetName="image"/>
Add comment 773 Plus </Trigger>
Add comment 774 Plus <Trigger Property="EnableVisualButtonStyle" Value="False">
Add comment 775 Plus <Setter TargetName="button" Property="MouseOverBackground" Value="Transparent"/>
Add comment 776 Plus <Setter TargetName="button" Property="MousePressedBackground" Value="Transparent"/>
Add comment 777 Plus <Setter TargetName="button" Property="BorderBrush" Value="Transparent"/>
Add comment 778 Plus </Trigger>
Add comment 779 Plus <MultiTrigger>
Add comment 780 Plus <MultiTrigger.Conditions>
Add comment 781 Plus <Condition Property="Header" Value="{x:Null}"/>
Add comment 782 Plus <Condition Property="IsImageVisible" Value="False"/>
Add comment 783 Plus <Condition Property="Image" Value="{x:Null}"/>
Add comment 784 Plus </MultiTrigger.Conditions>
Add comment 785 Plus <Setter Property="Visibility" Value="Collapsed" TargetName="button"/>
Add comment 786 Plus </MultiTrigger>
Add comment 787 Plus <Trigger Property="HasItems" Value="False">
Add comment 788 Plus <Setter Property="Visibility" Value="Collapsed" TargetName="PART_DropDown"/>
Add comment 789 Plus </Trigger>
Add comment 790 Plus <Trigger Property="Mode" Value="Overflow">
Add comment 791 Plus <Setter Property="Data" Value="{StaticResource OverflowArrow}" TargetName="dropDownPath"/>
Add comment 792 Plus <Setter Property="Fill" Value="Transparent" TargetName="dropDownPath"/>
Add comment 793 Plus <Setter Property="Stroke" Value="Black" TargetName="dropDownPath"/>
Add comment 794 Plus </Trigger>
Add comment 795 Plus <Trigger Property="IsPressed" Value="True">
Add comment 796 Plus <Setter Property="RenderPressed" Value="True" TargetName="PART_DropDown"/>
Add comment 797 Plus </Trigger>
Add comment 798 Plus <Trigger Property="IsKeyboardFocused" Value="True">
Add comment 799 Plus <Setter Property="RenderMouseOver" Value="True" TargetName="PART_DropDown"/>
Add comment 800 Plus <Setter Property="RenderMouseOver" Value="True" TargetName="button"/>
Add comment 801 Plus </Trigger>
Add comment 802 Plus <Trigger Property="IsDropDownVisible" Value="False">
Add comment 803 Plus <Setter TargetName="PART_DropDown" Property="Visibility" Value="Collapsed"/>
Add comment 804 Plus </Trigger>
Add comment 805 Plus <MultiTrigger>
Add comment 806 Plus <MultiTrigger.Conditions>
Add comment 807 Plus <Condition Property="IsMouseOver" Value="True" SourceName="PART_DropDown"/>
Add comment 808 Plus <Condition Property="EnableVisualButtonStyle" Value="True"/>
Add comment 809 Plus </MultiTrigger.Conditions>
Add comment 810 Plus <Setter Property="MouseOverBackground" Value="{StaticResource GradientBorderBrush}" TargetName="button"/>
Add comment 811 Plus </MultiTrigger>
Add comment 812 Plus <Trigger Property="IsButtonVisible" Value="False">
Add comment 813 Plus <Setter Property="Visibility" Value="Collapsed" TargetName="button"/>
Add comment 814 Plus </Trigger>
Add comment 815 Plus <MultiTrigger>
Add comment 816 Plus <MultiTrigger.Conditions>
Add comment 817 Plus <Condition Property="IsDropDownPressed" Value="True"/>
Add comment 818 Plus <Condition Property="Mode" Value="Breadcrumb"/>
Add comment 819 Plus </MultiTrigger.Conditions>
Add comment 820 Plus <Setter Property="Data" Value="{StaticResource DownArrow}" TargetName="dropDownPath"/>
Add comment 821 Plus <Setter Property="RenderPressed" Value="True" TargetName="button"/>
Add comment 822 Plus </MultiTrigger>
Add comment 823 Plus </ControlTemplate.Triggers>
Add comment 824 Plus </ControlTemplate>
Add comment 825 Plus </Setter.Value>
Add comment 826 Plus </Setter>
Add comment 827 Plus </Style>
Add comment 828 Plus
Add comment 829 Plus <Style TargetType="{x:Type odc:AeroChrome}">
Add comment 830 Plus <Setter Property="MouseOverBackground" Value="{StaticResource mouseOverBtnBrush}"/>
Add comment 831 Plus <Setter Property="MousePressedBackground" Value="{StaticResource mousePressedBtnBrush}"/>
Add comment 832 Plus <Setter Property="BorderBrush" Value="{StaticResource borderBrush}"/>
Add comment 833 Plus <Setter Property="Template">
Add comment 834 Plus <Setter.Value>
Add comment 835 Plus <ControlTemplate TargetType="{x:Type odc:AeroChrome}">
Add comment 836 Plus <Grid Margin="{TemplateBinding Padding}">
Add comment 837 Plus <Border x:Name="mouseOverBtn"
Add comment 838 Plus Opacity="0"
Add comment 839 Plus Background="{TemplateBinding MouseOverBackground}"
Add comment 840 Plus BorderBrush="{TemplateBinding BorderBrush}"
Add comment 841 Plus BorderThickness="{TemplateBinding BorderThickness}"
Add comment 842 Plus SnapsToDevicePixels="True">
Add comment 843 Plus <Border x:Name="innerButton" SnapsToDevicePixels="True"
Add comment 844 Plus BorderThickness="1"
Add comment 845 Plus BorderBrush="White"/>
Add comment 846 Plus </Border>
Add comment 847 Plus <Border x:Name="mouseDownBtn"
Add comment 848 Plus Opacity="0"
Add comment 849 Plus Background="{TemplateBinding MousePressedBackground}"
Add comment 850 Plus BorderBrush="{TemplateBinding BorderBrush}"
Add comment 851 Plus BorderThickness="{TemplateBinding BorderThickness}"
BetterExplorer.csproj
/BExplorer/BetterExplorer/BetterExplorer.csproj-1+5/BExplorer/BetterExplorer/BetterExplorer.csproj
Add comment 712 <Project>{6942fb86-f12f-43ae-8e6d-d4186ce7cb81}</Project>
Add comment 713 <Name>BEHelper</Name>
Add comment 714 </ProjectReference>
Add comment 715 Plus <ProjectReference Include="..\..\BreadcrumbBar\Odyssey.Controls.csproj">
Add comment 716 Plus <Project>{333fdc55-6b47-4a64-a2df-a4c5823fac74}</Project>
Add comment 717 Plus <Name>Odyssey.Controls</Name>
Add comment 718 Plus </ProjectReference>
Add comment 715 719 <ProjectReference Include="..\..\ConsoleControl\ConsoleControl.csproj">
Add comment 716 720 <Project>{737CC7F2-EC7C-4800-B7EB-72637E892C42}</Project>
Add comment 717 721 <Name>ConsoleControl</Name>
Add comment 1217 1221 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Add comment 1218 1222 <ProjectExtensions>
Add comment 1219 1223 <VisualStudio>
Add comment 1220 Minus <UserProperties BuildVersion_BuildVersioningStyle="None.None.None.Increment" BuildVersion_UpdateAssemblyVersion="True" BuildVersion_UpdateFileVersion="True" BuildVersion_UseGlobalSettings="True" />
Add comment 1224 Plus <UserProperties BuildVersion_UseGlobalSettings="True" BuildVersion_UpdateFileVersion="True" BuildVersion_UpdateAssemblyVersion="True" BuildVersion_BuildVersioningStyle="None.None.None.Increment" />
Add comment 1221 1225 </VisualStudio>
Add comment 1222 1226 </ProjectExtensions>
Add comment 1223 1227 <!-- <Import Project="..\..\packages\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets" Condition="Exists('..\..\packages\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets')" />
MainWindow.xaml
/BExplorer/BetterExplorer/MainWindow.xaml-3+28/BExplorer/BetterExplorer/MainWindow.xaml
Add comment 14 xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Add comment 15 xmlns:my2="http://schemas.microsoft.com/winfx/2006/xaml/presentation/ribbon"
Add comment 16 xmlns:ni="http://www.hardcodet.net/taskbar"
Add comment 17 Plus xmlns:odc="clr-namespace:Odyssey.Controls;assembly=Odyssey"
Add comment 18 Plus xmlns:shell="clr-namespace:BExplorer.Shell;assembly=BExplorerShell"
Add comment 17 19 Title="Better Explorer"
Add comment 18 20 MinWidth="640"
Add comment 19 21 MinHeight="480"
Add comment 33 35 mc:Ignorable="d" PreviewKeyDown="RibbonWindow_PreviewKeyDown" Icon="Images/explorer16.png" Activated="RibbonWindow_Activated" StateChanged="RibbonWindow_StateChanged">
Add comment 34 36
Add comment 35 37 <Ribbon:RibbonWindow.Resources>
Add comment 36 Minus <ResourceDictionary Source="Themes\generic.xaml" />
Add comment 38 Plus <ResourceDictionary>
Add comment 39 Plus <ResourceDictionary x:Key="rdMain" Source="Themes\generic.xaml" />
Add comment 40 Plus <DataTemplate DataType="{x:Type shell:ShellItem}">
Add comment 41 Plus <TextBlock Text="{Binding DisplayName}"/>
Add comment 42 Plus </DataTemplate>
Add comment 43 Plus <Style TargetType="{x:Type odc:BreadcrumbItem}">
Add comment 44 Plus <Setter Property="Image" Value="Images/explorer16.png"/>
Add comment 45 Plus </Style>
Add comment 46 Plus </ResourceDictionary>
Add comment 37 47 </Ribbon:RibbonWindow.Resources>
Add comment 38 48
Add comment 39 49
Add comment 1359 1369 DropDownOpened="btnEasyAccess_DropDownOpened"
Add comment 1360 1370 Header="Easy Access"
Add comment 1361 1371 Icon="Images\easyacc16.png"
Add comment 1372 Plus Focusable="False"
Add comment 1362 1373 Ribbon:KeyTip.Keys="E"
Add comment 1363 1374 Ribbon:RibbonAttachedProperties.RibbonSizeDefinition="Middle,Small,Small"
Add comment 1364 1375 Visibility="Visible">
Add comment 1888 1899 <Ribbon:DropDownButton x:Name="btnSort"
Add comment 1889 1900 Header="{DynamicResource btnSortByCP}"
Add comment 1890 1901 Icon="Images\sort16.png"
Add comment 1902 Plus Focusable="False"
Add comment 1891 1903 LargeIcon="Images\sort32.png"
Add comment 1892 1904 Ribbon:KeyTip.Keys="S"
Add comment 1893 1905 Ribbon:RibbonAttachedProperties.RibbonSizeDefinition="Large,Large,Small">
Add comment 1904 1916 Header="{DynamicResource btnGroupByCP}"
Add comment 1905 1917 Icon="Images\groupby16.png"
Add comment 1906 1918 Ribbon:KeyTip.Keys="G"
Add comment 1919 Plus Focusable="False"
Add comment 1907 1920 Ribbon:RibbonAttachedProperties.RibbonSizeDefinition="Middle,Small,Small" />
Add comment 1908 1921 <Ribbon:Button x:Name="btnAutosizeColls"
Add comment 1909 1922 Click="btnAutosizeColls_Click"
Add comment 2998 3011 <controls:BreadcrumbBarControl x:Name="breadcrumbBarControl1"
Add comment 2999 3012 Width="Auto"
Add comment 3000 3013 NavigateRequested="breadcrumbBarControl1_NavigateRequested"
Add comment 3001 Minus RefreshRequested="breadcrumbBarControl1_RefreshRequested" />
Add comment 3014 Plus RefreshRequested="breadcrumbBarControl1_RefreshRequested" Visibility="Hidden" />
Add comment 3015 Plus <odc:BreadcrumbBar x:Name="bcbc" Focusable="True" PopulateItems="pop_items" TraceBinding="{Binding DisplayName}" ImageBinding="{Binding Thumbnail.SmallBitmapSource}" Loaded="bcbc_Loaded" SelectedBreadcrumbChanged="bcbc_SelectedChanged" BreadcrumbItemDropDownOpened="bcbc_BreadcrumbItemDropDownOpened" BreadcrumbItemDropDownClosed="bcbc_BreadcrumbItemDropDownClosed" >
Add comment 3016 Plus <odc:BreadcrumbBar.Buttons>
Add comment 3017 Plus <Button Click="Refresh_Click">
Add comment 3018 Plus <Image Source="Images\Refresh16.png" Stretch="None" />
Add comment 3019 Plus </Button>
Add comment 3020 Plus </odc:BreadcrumbBar.Buttons>
Add comment 3021 Plus <odc:BreadcrumbBar.DropDownItems>
Add comment 3022 Plus <TextBlock Text="C:\Windows"/>
Add comment 3023 Plus <TextBlock Text="C:\Windows\System32"/>
Add comment 3024 Plus <TextBlock Text="C:\Users"/>
Add comment 3025 Plus </odc:BreadcrumbBar.DropDownItems>
Add comment 3026 Plus </odc:BreadcrumbBar>
Add comment 3002 3027
Add comment 3003 3028 <!-- my:SearchTextBox Margin="8,0,0,0" Name="searchTextBox1" HorizontalAlignment="Stretch" BorderBrush="Black" MinHeight="23" Search="searchTextBox1_Search" VerticalAlignment="Stretch" Grid.Column="1" PreviewMouseUp="searchTextBox1_PreviewMouseUp" MouseDown="searchTextBox1_MouseDown" GotFocus="searchTextBox1_GotFocus" IsKeyboardFocusedChanged="searchTextBox1_IsKeyboardFocusedChanged" LostFocus="searchTextBox1_LostFocus" LostKeyboardFocus="searchTextBox1_LostKeyboardFocus" GotKeyboardFocus="searchTextBox1_GotKeyboardFocus" MouseMove="searchTextBox1_MouseMove" MouseUp="searchTextBox1_MouseUp" / -->
Add comment 3004 3029 <controls:SearchBox x:Name="edtSearchBox"
Add comment 3047 3072 Placement="AbsolutePoint"
Add comment 3048 3073 AllowsTransparency="True" PopupAnimation="Fade" Closed="Editor_Closed" Opened="Editor_Opened">
Add comment 3049 3074 <Grid Grid.Row="1" Background="Transparent" HorizontalAlignment="Stretch" VerticalAlignment="Top" >
Add comment 3050 Minus <TextBox x:Name="txtEditor" TextWrapping="Wrap" TextAlignment="Center" HorizontalAlignment="Center" VerticalAlignment="Top" TextChanged="txtEditor_TextChanged" PreviewKeyDown="txtEditor_PreviewKeyDown"/>
Add comment 3075 Plus <TextBox x:Name="txtEditor" TextWrapping="Wrap" TextAlignment="Center" HorizontalAlignment="Center" VerticalAlignment="Top" TextChanged="txtEditor_TextChanged" PreviewKeyDown="txtEditor_PreviewKeyDown" AllowDrop="False" IsTabStop="False"/>
Add comment 3051 3076 </Grid>
Add comment 3052 3077 </controls:AirspacePopup>
Add comment 3053 3078
MainWindow.xaml.cs
/BExplorer/BetterExplorer/MainWindow.xaml.cs/BExplorer/BetterExplorer/MainWindow.xaml.cs
ApplyPropertiesEventArgs.cs
/BreadcrumbBar/BreadcrumbBar/ApplyPropertiesEventArgs.cs/BreadcrumbBar/BreadcrumbBar/ApplyPropertiesEventArgs.cs
BreadcrumbBar.cs
/BreadcrumbBar/BreadcrumbBar/BreadcrumbBar.cs/BreadcrumbBar/BreadcrumbBar/BreadcrumbBar.cs
BreadcrumbButton.cs
/BreadcrumbBar/BreadcrumbBar/BreadcrumbButton.cs/BreadcrumbBar/BreadcrumbBar/BreadcrumbButton.cs
BreadcrumbItem.cs
/BreadcrumbBar/BreadcrumbBar/BreadcrumbItem.cs/BreadcrumbBar/BreadcrumbBar/BreadcrumbItem.cs
BreadcrumbItemEventArgs.cs
/BreadcrumbBar/BreadcrumbBar/BreadcrumbItemEventArgs.cs/BreadcrumbBar/BreadcrumbBar/BreadcrumbItemEventArgs.cs
PathConversionEventArgs.cs
/BreadcrumbBar/BreadcrumbBar/PathConversionEventArgs.cs/BreadcrumbBar/BreadcrumbBar/PathConversionEventArgs.cs
AssemblyInfo.cs
/BreadcrumbBar/Properties/AssemblyInfo.cs/BreadcrumbBar/Properties/AssemblyInfo.cs
Resources.Designer.cs
/BreadcrumbBar/Properties/Resources.Designer.cs/BreadcrumbBar/Properties/Resources.Designer.cs
Settings.Designer.cs
/BreadcrumbBar/Properties/Settings.Designer.cs/BreadcrumbBar/Properties/Settings.Designer.cs
Settings.settings
/BreadcrumbBar/Properties/Settings.settings/BreadcrumbBar/Properties/Settings.settings
Odyssey.Controls.csproj
/BreadcrumbBar/Odyssey.Controls.csproj/BreadcrumbBar/Odyssey.Controls.csproj
BreadcrumbBarControl.xaml.cs
/WpfControlLibrary1/BreadcrumbBarControl.xaml.cs/WpfControlLibrary1/BreadcrumbBarControl.xaml.cs