- Added GongShell project...
4ce16d58
Dimitar Tsenev
committed
79 changed files
BetterExplorer.csproj
/BExplorer/BetterExplorer/BetterExplorer.csproj-3+7
/BExplorer/BetterExplorer/BetterExplorer.csproj
Add comment 707 <Project>{4960DD14-3431-47EC-B9D9-9D2730A98DC3}</Project>
Add comment 708 <Name>SevenZip2010</Name>
Add comment 709 </ProjectReference>
Add comment 710 Plus   <ProjectReference Include="..\..\Shell\Shell.csproj">
Add comment 711 Plus   <Project>{711ccf1f-6b8f-4e97-8d84-0ee679c83b41}</Project>
Add comment 712 Plus   <Name>Shell</Name>
Add comment 713 Plus   </ProjectReference>
Add comment 710 714 <ProjectReference Include="..\..\UsbEject\UsbEject.csproj">
Add comment 711 715 <Project>{ae269158-dfa5-4dd7-8afc-f45faf2b958c}</Project>
Add comment 712 716 <Name>UsbEject</Name>
Add comment 713 717 </ProjectReference>
Add comment 714 Minus   <ProjectReference Include="..\..\Windows API Code Pack 1.1\source\WindowsAPICodePack\Shell\Shell.csproj">
Add comment 718 Plus   <ProjectReference Include="..\..\Windows API Code Pack 1.1\source\WindowsAPICodePack\Shell\ShellCodePack.csproj">
Add comment 715 719 <Project>{aa0c00cb-8699-4f37-bfae-40ca87acc06d}</Project>
Add comment 716 Minus   <Name>Shell</Name>
Add comment 720 Plus   <Name>ShellCodePack</Name>
Add comment 717 721 </ProjectReference>
Add comment 718 722 <ProjectReference Include="..\..\WpfControlLibrary1\BetterExplorerControls.csproj">
Add comment 719 723 <Project>{04270710-e358-46d4-83e5-eb7a9323cce7}</Project>
Add comment 1165 1169 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Add comment 1166 1170 <ProjectExtensions>
Add comment 1167 1171 <VisualStudio>
Add comment 1168 Minus   <UserProperties BuildVersion_UseGlobalSettings="True" BuildVersion_UpdateFileVersion="True" BuildVersion_UpdateAssemblyVersion="True" BuildVersion_BuildVersioningStyle="None.None.None.Increment" />
Add comment 1172 Plus   <UserProperties BuildVersion_BuildVersioningStyle="None.None.None.Increment" BuildVersion_UpdateAssemblyVersion="True" BuildVersion_UpdateFileVersion="True" BuildVersion_UseGlobalSettings="True" />
Add comment 1169 1173 </VisualStudio>
Add comment 1170 1174 </ProjectExtensions>
Add comment 1171 1175 <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
MainWindow.xaml
/BExplorer/BetterExplorer/MainWindow.xaml-1+11
/BExplorer/BetterExplorer/MainWindow.xaml
Add comment 3111 HorizontalAlignment="Stretch"
Add comment 3112 VerticalAlignment="Center"
Add comment 3113 Background="LightBlue" />
Add comment 3114 Plus   <Grid Grid.Column="0" Grid.Row="2" Background="White" ClipToBounds="True">
Add comment 3115 Plus   <Grid.ColumnDefinitions>
Add comment 3116 Plus   <ColumnDefinition Width="200"/>
Add comment 3117 Plus   <ColumnDefinition Width="2"/>
Add comment 3118 Plus   <ColumnDefinition Width="*"/>
Add comment 3119 Plus   </Grid.ColumnDefinitions>
Add comment 3120 Plus   <Helper:NoFlickerWindowsFormsHost x:Name="ShellTreeHost" Grid.Column="0" Background="White"/>
Add comment 3121 Plus   <GridSplitter Grid.Column="1" Width="1" HorizontalAlignment="Center" VerticalAlignment="Stretch" Background="LightGray" DragDelta="GridSplitter_DragDelta"/>
Add comment 3122 Plus   <Helper:NoFlickerWindowsFormsHost x:Name="ShellViewHost" Grid.Column="2" Background="White"/>
Add comment 3123 Plus   </Grid>
Add comment 3114 3124 <Helper:NoFlickerWindowsFormsHost x:Name="ShellVView"
Add comment 3115 3125 Grid.Row="2"
Add comment 3116 3126 Grid.Column="0"
Add comment 3117 3127 Panel.ZIndex="1"
Add comment 3118 3128 Background="White"
Add comment 3119 Minus   ClipToBounds="True" />
Add comment 3129 Plus   ClipToBounds="True" Width="1" Height="1"/>
Add comment 3120 3130 <GridSplitter Grid.Row="2"
Add comment 3121 3131 Grid.Column="1"
Add comment 3122 3132 Width="1"
MainWindow.xaml.cs
/BExplorer/BetterExplorer/MainWindow.xaml.cs-178+210
/BExplorer/BetterExplorer/MainWindow.xaml.cs
Add comment 48 using LTR.IO.ImDisk;
Add comment 49 using System.Collections.ObjectModel;
Add comment 50 using System.Threading.Tasks;
Add comment 51 Plus  using GongSolutions.Shell;
Add comment 51 52
Add comment 52 53 namespace BetterExplorer
Add comment 53 54 {
Add comment 58 59 {
Add comment 59 60 #region Variables and Constants
Add comment 60 61 ExplorerBrowser Explorer = new ExplorerBrowser();
Add comment 62 Plus   ShellView ShellListView = new ShellView();
Add comment 63 Plus   ShellTreeView ShellTree = new ShellTreeView();
Add comment 61 64 ClipboardMonitor cbm = new ClipboardMonitor();
Add comment 62 65 ContextMenu cmHistory = new ContextMenu();
Add comment 63 66 private int LastTabIndex = -1;
Add comment 131 134 UIElement curitem = null;
Add comment 132 135 Boolean IsGlassOnRibonMinimized { get; set; }
Add comment 133 136 NetworkAccountManager nam = new NetworkAccountManager();
Add comment 134 Minus   List<LVItemColor> LVItemsColor { get; set; }
Add comment 137 Plus   List<GongSolutions.Shell.LVItemColor> LVItemsColor { get; set; }
Add comment 135 138 uint SelectedDriveID = 0;
Add comment 136 139 string[] InitialTabs;
Add comment 137 140 #endregion
Add comment 581 584 XDocument docs = XDocument.Load(itemColorSettingsLocation);
Add comment 582 585
Add comment 583 586 this.LVItemsColor = docs.Root.Elements("ItemColorRow")
Add comment 584 Minus   .Select(element => new LVItemColor(element.Elements().ToArray()[0].Value, System.Drawing.Color.FromArgb(Convert.ToInt32(element.Elements().ToArray()[1].Value))))
Add comment 587 Plus   .Select(element => new GongSolutions.Shell.LVItemColor(element.Elements().ToArray()[0].Value, System.Drawing.Color.FromArgb(Convert.ToInt32(element.Elements().ToArray()[1].Value))))
Add comment 585 588 .ToList();
Add comment 586 589
Add comment 587 590 }
Add comment 1239 1242 }
Add comment 1240 1243 async void Explorer_NavigationComplete(object sender, NavigationCompleteEventArgs e)
Add comment 1241 1244 {
Add comment 1242 Minus   try
Add comment 1243 Minus   {
Add comment 1244 Minus   int explorerSelectedItemsCount = 0;
Add comment 1245 Minus   Task.Run(() =>
Add comment 1246 Minus   {
Add comment 1247 Minus   Dispatcher.BeginInvoke(System.Windows.Threading.DispatcherPriority.Background, (ThreadStart)(() =>
Add comment 1248 Minus   {
Add comment 1249 Minus   SetUpBreadcrumbbarOnNavComplete(e);
Add comment 1250 Minus  
Add comment 1251 Minus   }));
Add comment 1252 Minus   });
Add comment 1253 1245
Add comment 1254 Minus   Task.Run(() =>
Add comment 1255 Minus   {
Add comment 1256 Minus   Dispatcher.BeginInvoke(DispatcherPriority.Background, (ThreadStart)(() =>
Add comment 1257 Minus   {
Add comment 1258 Minus   ExplorerBrowser.FlushMemory();
Add comment 1259 Minus   PreselectItemsIntoExplorerControl();
Add comment 1260 1246
Add comment 1261 Minus   ConstructMoveToCopyToMenu();
Add comment 1262 Minus  
Add comment 1263 Minus   SetupUIonNavComplete(e);
Add comment 1264 Minus  
Add comment 1265 Minus   SetUpJumpListOnNavComplete();
Add comment 1266 Minus  
Add comment 1267 Minus  
Add comment 1268 Minus   bool isinLibraries = SetUpNewFolderButtons();
Add comment 1269 Minus  
Add comment 1270 Minus   SetUpButtonVisibilityOnNavComplete(isinLibraries);
Add comment 1271 Minus  
Add comment 1272 Minus   SetUpConsoleWindow(e);
Add comment 1273 Minus  
Add comment 1274 Minus   SetupUIOnSelectOrNavigate(Explorer.GetSelectedItemsCount(), true);
Add comment 1275 Minus   }
Add comment 1276 Minus   ));
Add comment 1277 Minus   });
Add comment 1278 Minus  
Add comment 1279 Minus   if (this.IsInfoPaneEnabled)
Add comment 1280 Minus   {
Add comment 1281 Minus   await Task.Run(() =>
Add comment 1282 Minus   {
Add comment 1283 Minus   PreviewPanel.FillPreviewPane(Explorer);
Add comment 1284 Minus   });
Add comment 1285 1247 }
Add comment 1286 1248
Add comment 1287 Minus   #region StatusBar selected items counter
Add comment 1288 Minus   await Dispatcher.BeginInvoke(DispatcherPriority.Background, (ThreadStart)(() =>
Add comment 1289 Minus   {
Add comment 1290 Minus   explorerSelectedItemsCount = Explorer.GetSelectedItemsCount();
Add comment 1291 Minus   }));
Add comment 1292 Minus  
Add comment 1293 Minus   SetUpStatusBarOnSelectOrNavigate(explorerSelectedItemsCount);
Add comment 1294 Minus   #endregion
Add comment 1295 Minus   }
Add comment 1296 Minus   catch (Exception exe)
Add comment 1297 Minus   {
Add comment 1298 Minus   ShellObject ne = e.NewLocation;
Add comment 1299 Minus   bool isinLibraries = false;
Add comment 1300 Minus   bool itisLibraries = false;
Add comment 1301 Minus   if (ne != null)
Add comment 1302 Minus   {
Add comment 1303 Minus  
Add comment 1304 Minus   if (ne.Parent.ParsingName == KnownFolders.Libraries.ParsingName)
Add comment 1305 Minus   {
Add comment 1306 Minus   isinLibraries = true;
Add comment 1307 Minus   }
Add comment 1308 Minus   else
Add comment 1309 Minus   {
Add comment 1310 Minus   isinLibraries = false;
Add comment 1311 Minus   }
Add comment 1312 Minus  
Add comment 1313 Minus   if (ne.ParsingName == KnownFolders.Libraries.ParsingName)
Add comment 1314 Minus   {
Add comment 1315 Minus   itisLibraries = true;
Add comment 1316 Minus   }
Add comment 1317 Minus   else
Add comment 1318 Minus   {
Add comment 1319 Minus   itisLibraries = false;
Add comment 1320 Minus   }
Add comment 1321 Minus   }
Add comment 1322 Minus  
Add comment 1323 Minus   //if (MessageBox.Show("An error occurred while loading a folder. Please report this issue at http://bugtracker.better-explorer.com/. \r\n\r\nHere is some information about the folder being loaded:\r\n\r\nName: " + ne.GetDisplayName(DisplayNameType.Default) + "\r\nLocation: " + ne.ParsingName +
Add comment 1324 Minus   // "\r\n\r\nFolder, Drive, or Library: " + GetYesNoFromBoolean(ne.IsFolder) + "\r\nDrive: " + GetYesNoFromBoolean(ne.IsDrive) + "\r\nNetwork Drive: " + GetYesNoFromBoolean(ne.IsNetDrive) + "\r\nRemovable: " + GetYesNoFromBoolean(ne.IsRemovable) +
Add comment 1325 Minus   // "\r\nSearch Folder: " + GetYesNoFromBoolean(ne.IsSearchFolder) + "\r\nShared: " + GetYesNoFromBoolean(ne.IsShared) + "\r\nShortcut: " + GetYesNoFromBoolean(ne.IsLink) + "\r\nLibrary: " + GetYesNoFromBoolean(isinLibraries) + "\r\nLibraries Folder: " + GetYesNoFromBoolean(itisLibraries) +
Add comment 1326 Minus   // "\r\n\r\n Would you like to see additional information? Click No to try continuing the program.", "Error Occurred on Completing Navigation", MessageBoxButton.YesNo, MessageBoxImage.Error) == MessageBoxResult.Yes)
Add comment 1327 Minus   //{
Add comment 1328 Minus   // MessageBox.Show("An error occurred while loading a folder. Please report this issue at http://bugtracker.better-explorer.com/. \r\n\r\nHere is additional information about the error: \r\n\r\n" + exe.Message + "\r\n\r\n" + exe.ToString(), "Additional Error Data", MessageBoxButton.OK, MessageBoxImage.Error);
Add comment 1329 Minus   //}
Add comment 1330 Minus   }
Add comment 1331 Minus  
Add comment 1332 Minus   }
Add comment 1333 Minus  
Add comment 1334 1249 public static string GetYesNoFromBoolean(bool value)
Add comment 1335 1250 {
Add comment 1336 1251 return value ? "Yes" : "No";
Add comment 1437 1352 {
Add comment 1438 1353 e.Cancel = Explorer.IsCancelNavigation;
Add comment 1439 1354 }
Add comment 1440 Minus  
Add comment 1441 Minus   void Explorer_ViewChanged(object sender, ViewChangedEventArgs e)
Add comment 1442 Minus   {
Add comment 1443 Minus   IsViewSelection = false;
Add comment 1444 Minus  
Add comment 1445 Minus   if (e.ThumbnailSize == 256)
Add comment 1446 Minus   {
Add comment 1447 Minus   ViewGallery.SelectedIndex = 0;
Add comment 1448 Minus  
Add comment 1449 Minus   }
Add comment 1450 Minus   if (e.ThumbnailSize == 96)
Add comment 1451 Minus   {
Add comment 1452 Minus   ViewGallery.SelectedIndex = 1;
Add comment 1453 1355
Add comment 1454 Minus   }
Add comment 1455 Minus   if (e.View == ExplorerBrowserViewMode.Icon && e.ThumbnailSize == 48)
Add comment 1456 Minus   {
Add comment 1457 Minus   ViewGallery.SelectedIndex = 2;
Add comment 1458 Minus   btnSbIcons.IsChecked = true;
Add comment 1459 Minus   }
Add comment 1460 Minus   if (e.View == ExplorerBrowserViewMode.SmallIcon)
Add comment 1461 Minus   {
Add comment 1462 Minus   ViewGallery.SelectedIndex = 3;
Add comment 1463 Minus  
Add comment 1464 Minus   }
Add comment 1465 Minus   else
Add comment 1466 Minus   {
Add comment 1467 Minus   btnSbIcons.IsChecked = false;
Add comment 1468 Minus   }
Add comment 1469 Minus   if (Explorer.ContentOptions.ViewMode == ExplorerBrowserViewMode.List)
Add comment 1470 Minus   {
Add comment 1471 Minus   ViewGallery.SelectedIndex = 4;
Add comment 1472 Minus   }
Add comment 1473 Minus   if (e.View == ExplorerBrowserViewMode.Details)
Add comment 1474 Minus   {
Add comment 1475 Minus   ViewGallery.SelectedIndex = 5;
Add comment 1476 Minus   btnSbDetails.IsChecked = true;
Add comment 1477 Minus   }
Add comment 1478 Minus   else
Add comment 1479 Minus   {
Add comment 1480 Minus   btnSbDetails.IsChecked = false;
Add comment 1481 Minus   }
Add comment 1482 Minus   if (e.View == ExplorerBrowserViewMode.Tile)
Add comment 1483 Minus   {
Add comment 1484 Minus   ViewGallery.SelectedIndex = 6;
Add comment 1485 Minus   btnSbTiles.IsChecked = true;
Add comment 1486 Minus   }
Add comment 1487 Minus   else
Add comment 1488 Minus   {
Add comment 1489 Minus   btnSbTiles.IsChecked = false;
Add comment 1490 Minus   }
Add comment 1491 Minus   if (e.View == ExplorerBrowserViewMode.Content)
Add comment 1492 Minus   {
Add comment 1493 Minus   ViewGallery.SelectedIndex = 7;
Add comment 1494 Minus   }
Add comment 1495 Minus   IsCalledFromViewEnum = true;
Add comment 1496 Minus   zoomSlider.Value = e.ThumbnailSize;
Add comment 1497 Minus   IsCalledFromViewEnum = false;
Add comment 1498 Minus  
Add comment 1499 Minus   btnAutosizeColls.IsEnabled = e.View == ExplorerBrowserViewMode.Details ? true : false;
Add comment 1500 Minus  
Add comment 1501 Minus   IsViewSelection = true;
Add comment 1502 Minus   }
Add comment 1503 Minus  
Add comment 1504 1356 void fsw_Renamed(object sender, RenamedEventArgs e)
Add comment 1505 1357 {
Add comment 1506 1358
Add comment 4493 4345 PreviouseWindowState = WindowState;
Add comment 4494 4346
Add comment 4495 4347 // attach to event (used to store prev. win. state)
Add comment 4496 Minus   LayoutUpdated += Window_LayoutUpdated;
Add comment 4348 Plus   //FIXME: fix the event
Add comment 4349 Plus   //LayoutUpdated += Window_LayoutUpdated;
Add comment 4497 4350
Add comment 4498 4351 ShellVView.Child = Explorer;
Add comment 4352 Plus   //ShellVView.Visibility = System.Windows.Visibility.Hidden;
Add comment 4499 4353
Add comment 4354 Plus  
Add comment 4500 4355 // prepares RTL mode
Add comment 4501 4356 if (rtlused == "true")
Add comment 4502 4357 {
Add comment 4572 4427 }
Add comment 4573 4428 private void InitializeExplorerControl()
Add comment 4574 4429 {
Add comment 4575 Minus   Explorer.LVItemsColorCodes = this.LVItemsColor;
Add comment 4430 Plus   ShellListView.Navigated += ShellListView_Navigated;
Add comment 4431 Plus   ShellListView.ViewStyleChanged += ShellListView_ViewStyleChanged;
Add comment 4432 Plus   //Explorer.LVItemsColorCodes = this.LVItemsColor;
Add comment 4576 4433 Explorer.SelectionChanged += ExplorerBrowserControl_SelectionChanged;
Add comment 4577 Minus   Explorer.NavigationComplete += Explorer_NavigationComplete;
Add comment 4434 Plus   //Explorer.NavigationComplete += Explorer_NavigationComplete;
Add comment 4578 4435 Explorer.MouseWheel += Explorer_MouseWheel;
Add comment 4579 4436 Explorer.ViewEnumerationComplete += Explorer_ViewEnumerationComplete;
Add comment 4580 4437 Explorer.NavigationPending += Explorer_NavigationPending;
Add comment 4590 4447 Explorer.ContentOptions.FullRowSelect = true;
Add comment 4591 4448 Explorer.ClientSizeChanged += ExplorerBrowserControl_ClientSizeChanged;
Add comment 4592 4449 Explorer.Paint += ExplorerBrowserControl_Paint;
Add comment 4593 Minus   Explorer.ViewChanged += Explorer_ViewChanged;
Add comment 4450 Plus   //Explorer.ViewChanged += Explorer_ViewChanged;
Add comment 4594 4451 Explorer.ItemHot += Explorer_ItemHot;
Add comment 4595 4452 Explorer.ItemMouseMiddleClick += Explorer_ItemMouseMiddleClick;
Add comment 4596 4453 Explorer.ExplorerBrowserMouseLeave += Explorer_ExplorerBrowserMouseLeave;
Add comment 4606 4463 Explorer.Width = (int)ShellVView.ActualWidth;
Add comment 4607 4464 Explorer.Height = (int)ShellVView.ActualHeight;
Add comment 4608 4465 }
Add comment 4466 Plus  
Add comment 4467 Plus   void ShellListView_ViewStyleChanged(object sender, GongSolutions.Shell.ViewChangedEventArgs e)
Add comment 4468 Plus   {
Add comment 4469 Plus   IsViewSelection = false;
Add comment 4470 Plus  
Add comment 4471 Plus   if (e.ThumbnailSize == 256)
Add comment 4472 Plus   {
Add comment 4473 Plus   ViewGallery.SelectedIndex = 0;
Add comment 4474 Plus  
Add comment 4475 Plus   }
Add comment 4476 Plus   if (e.ThumbnailSize == 96)
Add comment 4477 Plus   {
Add comment 4478 Plus   ViewGallery.SelectedIndex = 1;
Add comment 4479 Plus  
Add comment 4480 Plus   }
Add comment 4481 Plus   if (e.CurrentView == ShellViewStyle.LargeIcon && e.ThumbnailSize == 48)
Add comment 4482 Plus   {
Add comment 4483 Plus   ViewGallery.SelectedIndex = 2;
Add comment 4484 Plus   btnSbIcons.IsChecked = true;
Add comment 4485 Plus   }
Add comment 4486 Plus   if (e.CurrentView == ShellViewStyle.SmallIcon)
Add comment 4487 Plus   {
Add comment 4488 Plus   ViewGallery.SelectedIndex = 3;
Add comment 4489 Plus  
Add comment 4490 Plus   }
Add comment 4491 Plus   else
Add comment 4492 Plus   {
Add comment 4493 Plus   btnSbIcons.IsChecked = false;
Add comment 4494 Plus   }
Add comment 4495 Plus   if (e.CurrentView == ShellViewStyle.List)
Add comment 4496 Plus   {
Add comment 4497 Plus   ViewGallery.SelectedIndex = 4;
Add comment 4498 Plus   }
Add comment 4499 Plus   if (e.CurrentView == ShellViewStyle.Details)
Add comment 4500 Plus   {
Add comment 4501 Plus   ViewGallery.SelectedIndex = 5;
Add comment 4502 Plus   btnSbDetails.IsChecked = true;
Add comment 4503 Plus   }
Add comment 4504 Plus   else
Add comment 4505 Plus   {
Add comment 4506 Plus   btnSbDetails.IsChecked = false;
Add comment 4507 Plus   }
Add comment 4508 Plus   if (e.CurrentView == ShellViewStyle.Tile)
Add comment 4509 Plus   {
Add comment 4510 Plus   ViewGallery.SelectedIndex = 6;
Add comment 4511 Plus   btnSbTiles.IsChecked = true;
Add comment 4512 Plus   }
Add comment 4513 Plus   else
Add comment 4514 Plus   {
Add comment 4515 Plus   btnSbTiles.IsChecked = false;
Add comment 4516 Plus   }
Add comment 4517 Plus   if (e.CurrentView == ShellViewStyle.Content)
Add comment 4518 Plus   {
Add comment 4519 Plus   ViewGallery.SelectedIndex = 7;
Add comment 4520 Plus   }
Add comment 4521 Plus   IsCalledFromViewEnum = true;
Add comment 4522 Plus   zoomSlider.Value = e.ThumbnailSize;
Add comment 4523 Plus   IsCalledFromViewEnum = false;
Add comment 4524 Plus  
Add comment 4525 Plus   btnAutosizeColls.IsEnabled = e.CurrentView == ShellViewStyle.Details ? true : false;
Add comment 4526 Plus  
Add comment 4527 Plus   IsViewSelection = true;
Add comment 4528 Plus   }
Add comment 4529 Plus  
Add comment 4530 Plus   async void ShellListView_Navigated(object sender, NavigatedEventArgs e)
Add comment 4531 Plus   {
Add comment 4532 Plus   ShellObject sho;
Add comment 4533 Plus   try
Add comment 4534 Plus   {
Add comment 4535 Plus   sho = ShellObjectFactory.Create(e.Folder.Pidl);
Add comment 4536 Plus   NavigationCompleteEventArgs ec = new NavigationCompleteEventArgs();
Add comment 4537 Plus   ec.NewLocation = sho;
Add comment 4538 Plus   int explorerSelectedItemsCount = 0;
Add comment 4539 Plus   Task.Run(() =>
Add comment 4540 Plus   {
Add comment 4541 Plus   Dispatcher.BeginInvoke(System.Windows.Threading.DispatcherPriority.Background, (ThreadStart)(() =>
Add comment 4542 Plus   {
Add comment 4543 Plus   SetUpBreadcrumbbarOnNavComplete(ec);
Add comment 4544 Plus  
Add comment 4545 Plus   }));
Add comment 4546 Plus   });
Add comment 4547 Plus  
Add comment 4548 Plus   Task.Run(() =>
Add comment 4549 Plus   {
Add comment 4550 Plus   Dispatcher.BeginInvoke(DispatcherPriority.Background, (ThreadStart)(() =>
Add comment 4551 Plus   {
Add comment 4552 Plus   ExplorerBrowser.FlushMemory();
Add comment 4553 Plus   PreselectItemsIntoExplorerControl();
Add comment 4554 Plus  
Add comment 4555 Plus   ConstructMoveToCopyToMenu();
Add comment 4556 Plus  
Add comment 4557 Plus   SetupUIonNavComplete(ec);
Add comment 4558 Plus  
Add comment 4559 Plus   SetUpJumpListOnNavComplete();
Add comment 4560 Plus  
Add comment 4561 Plus  
Add comment 4562 Plus   bool isinLibraries = SetUpNewFolderButtons();
Add comment 4563 Plus  
Add comment 4564 Plus   SetUpButtonVisibilityOnNavComplete(isinLibraries);
Add comment 4565 Plus  
Add comment 4566 Plus   SetUpConsoleWindow(ec);
Add comment 4567 Plus  
Add comment 4568 Plus   SetupUIOnSelectOrNavigate(Explorer.GetSelectedItemsCount(), true);
Add comment 4569 Plus   }
Add comment 4570 Plus   ));
Add comment 4571 Plus   });
Add comment 4572 Plus  
Add comment 4573 Plus   if (this.IsInfoPaneEnabled)
Add comment 4574 Plus   {
Add comment 4575 Plus   await Task.Run(() =>
Add comment 4576 Plus   {
Add comment 4577 Plus   PreviewPanel.FillPreviewPane(Explorer);
Add comment 4578 Plus   });
Add comment 4579 Plus   }
Add comment 4580 Plus  
Add comment 4581 Plus   #region StatusBar selected items counter
Add comment 4582 Plus   await Dispatcher.BeginInvoke(DispatcherPriority.Background, (ThreadStart)(() =>
Add comment 4583 Plus   {
Add comment 4584 Plus   explorerSelectedItemsCount = Explorer.GetSelectedItemsCount();
Add comment 4585 Plus   }));
Add comment 4586 Plus  
Add comment 4587 Plus   SetUpStatusBarOnSelectOrNavigate(explorerSelectedItemsCount);
Add comment 4588 Plus   #endregion
Add comment 4589 Plus   }
Add comment 4590 Plus   catch (Exception exe)
Add comment 4591 Plus   {
Add comment 4592 Plus   ShellObject ne = ShellObjectFactory.Create(e.Folder.Pidl);
Add comment 4593 Plus   bool isinLibraries = false;
Add comment 4594 Plus   bool itisLibraries = false;
Add comment 4595 Plus   if (ne != null)
Add comment 4596 Plus   {
Add comment 4597 Plus  
Add comment 4598 Plus   if (ne.Parent.ParsingName == KnownFolders.Libraries.ParsingName)
Add comment 4599 Plus   {
Add comment 4600 Plus   isinLibraries = true;
Add comment 4601 Plus   }
Add comment 4602 Plus   else
Add comment 4603 Plus   {
Add comment 4604 Plus   isinLibraries = false;
Add comment 4605 Plus   }
Add comment 4606 Plus  
Add comment 4607 Plus   if (ne.ParsingName == KnownFolders.Libraries.ParsingName)
Add comment 4608 Plus   {
Add comment 4609 Plus   itisLibraries = true;
Add comment 4610 Plus   }
Add comment 4611 Plus   else
Add comment 4612 Plus   {
Add comment 4613 Plus   itisLibraries = false;
Add comment 4614 Plus   }
Add comment 4615 Plus   }
Add comment 4616 Plus  
Add comment 4617 Plus   //if (MessageBox.Show("An error occurred while loading a folder. Please report this issue at http://bugtracker.better-explorer.com/. \r\n\r\nHere is some information about the folder being loaded:\r\n\r\nName: " + ne.GetDisplayName(DisplayNameType.Default) + "\r\nLocation: " + ne.ParsingName +
Add comment 4618 Plus   // "\r\n\r\nFolder, Drive, or Library: " + GetYesNoFromBoolean(ne.IsFolder) + "\r\nDrive: " + GetYesNoFromBoolean(ne.IsDrive) + "\r\nNetwork Drive: " + GetYesNoFromBoolean(ne.IsNetDrive) + "\r\nRemovable: " + GetYesNoFromBoolean(ne.IsRemovable) +
Add comment 4619 Plus   // "\r\nSearch Folder: " + GetYesNoFromBoolean(ne.IsSearchFolder) + "\r\nShared: " + GetYesNoFromBoolean(ne.IsShared) + "\r\nShortcut: " + GetYesNoFromBoolean(ne.IsLink) + "\r\nLibrary: " + GetYesNoFromBoolean(isinLibraries) + "\r\nLibraries Folder: " + GetYesNoFromBoolean(itisLibraries) +
Add comment 4620 Plus   // "\r\n\r\n Would you like to see additional information? Click No to try continuing the program.", "Error Occurred on Completing Navigation", MessageBoxButton.YesNo, MessageBoxImage.Error) == MessageBoxResult.Yes)
Add comment 4621 Plus   //{
Add comment 4622 Plus   // MessageBox.Show("An error occurred while loading a folder. Please report this issue at http://bugtracker.better-explorer.com/. \r\n\r\nHere is additional information about the error: \r\n\r\n" + exe.Message + "\r\n\r\n" + exe.ToString(), "Additional Error Data", MessageBoxButton.OK, MessageBoxImage.Error);
Add comment 4623 Plus   //}
Add comment 4624 Plus   }
Add comment 4625 Plus   }
Add comment 4609 4626 protected override void OnSourceInitialized(EventArgs e)
Add comment 4610 4627 {
Add comment 4611 4628 base.OnSourceInitialized(e);
Add comment 4930 4947 if (i == InitialTabs.Count())
Add comment 4931 4948 {
Add comment 4932 4949 ShellObject sho = GetShellObjectFromLocation(str);
Add comment 4950 Plus   //FIXME: fix it to work with new controls
Add comment 4933 4951 Explorer.Navigate(sho);
Add comment 4934 4952 (tabControl1.SelectedItem as ClosableTabItem).Path = Explorer.NavigationLog.CurrentLocation;
Add comment 4935 4953 (tabControl1.SelectedItem as ClosableTabItem).ToolTip = Explorer.NavigationLog.CurrentLocation.ParsingName;
Add comment 4965 4983
Add comment 4966 4984 if (tabControl1.Items.Count == 1)
Add comment 4967 4985 tabControl1.SelectedIndex = 0;
Add comment 4986 Plus  
Add comment 4987 Plus   //ShellVView.Visibility = System.Windows.Visibility.Hidden;
Add comment 4968 4988 }
Add comment 4969 4989 private void SetsUpJumpList()
Add comment 4970 4990 {
Add comment 4999 5019
Add comment 5000 5020 }
Add comment 5001 5021 }
Add comment 5022 Plus  
Add comment 5002 5023 private void Window_Loaded(object sender, RoutedEventArgs e)
Add comment 5003 5024 {
Add comment 5004 5025 Task.Run(() =>
Add comment 5006 5027 UpdateRecycleBinInfos();
Add comment 5007 5028 });
Add comment 5008 5029
Add comment 5030 Plus   ShellTreeHost.Child = ShellTree;
Add comment 5031 Plus   ShellViewHost.Child = ShellListView;
Add comment 5032 Plus  
Add comment 5033 Plus   ShellTree.ShellView = ShellListView;
Add comment 5034 Plus   ShellListView.LVItemsColorCodes = LVItemsColor;
Add comment 5009 5035
Add comment 5010 5036 r = new MessageReceiver();
Add comment 5011 5037 r.OnMessageReceived += r_OnMessageReceived;
Add comment 5055 5081 });
Add comment 5056 5082
Add comment 5057 5083 //Set up ListView Color codes
Add comment 5058 Minus   Explorer.LVItemsColorCodes = this.LVItemsColor;
Add comment 5084 Plus   //Explorer.LVItemsColorCodes = this.LVItemsColor;
Add comment 5059 5085
Add comment 5060 5086
Add comment 5061 5087 //Load the ShellSettings
Add comment 5139 5165 //Set up Version Info
Add comment 5140 5166 verNumber.Content = "Version " + (Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyInformationalVersionAttribute), false).FirstOrDefault() as AssemblyInformationalVersionAttribute).InformationalVersion;
Add comment 5141 5167 lblArchitecture.Content = WindowsAPI.Is64bitProcess(Process.GetCurrentProcess()) ? "64-bit version" : "32-bit version";
Add comment 5142 Minus  
Add comment 5168 Plus   ShellListView.subclassed = new ShellDeffViewSubClassedWindow(IntPtr.Zero, ShellListView.ShellListViewHandle, ShellListView);
Add comment 5169 Plus   ShellListView.subclassed.AssignHandle(ShellListView.m_ShellViewWindow);
Add comment 5143 5170 this.Activate(true);
Add comment 5144 5171 }
Add comment 5145 5172 catch (Exception exe)
Add comment 5939 5966 switch (ViewGallery.SelectedIndex)
Add comment 5940 5967 {
Add comment 5941 5968 case 0:
Add comment 5942 Minus   Explorer.ContentOptions.ViewMode = ExplorerBrowserViewMode.Icon;
Add comment 5943 Minus   Explorer.ContentOptions.ThumbnailSize = 256;
Add comment 5969 Plus   ShellListView.View = ShellViewStyle.LargeIcon;
Add comment 5970 Plus   ShellListView.ThumbnailSize = 256;
Add comment 5944 5971 break;
Add comment 5945 5972 case 1:
Add comment 5946 Minus   Explorer.ContentOptions.ViewMode = ExplorerBrowserViewMode.Icon;
Add comment 5947 Minus   Explorer.ContentOptions.ThumbnailSize = 96;
Add comment 5973 Plus   ShellListView.View = ShellViewStyle.LargeIcon;
Add comment 5974 Plus   ShellListView.ThumbnailSize = 96;
Add comment 5948 5975 break;
Add comment 5949 5976 case 2:
Add comment 5950 Minus   Explorer.ContentOptions.ViewMode = ExplorerBrowserViewMode.Icon;
Add comment 5951 Minus   Explorer.ContentOptions.ThumbnailSize = 48;
Add comment 5977 Plus   ShellListView.View = ShellViewStyle.LargeIcon;
Add comment 5978 Plus   ShellListView.ThumbnailSize = 48;
Add comment 5952 5979 break;
Add comment 5953 5980 case 3:
Add comment 5954 Minus   Explorer.ContentOptions.ViewMode = ExplorerBrowserViewMode.SmallIcon;
Add comment 5955 Minus   Explorer.ContentOptions.ThumbnailSize = 16;
Add comment 5981 Plus   ShellListView.View = ShellViewStyle.SmallIcon;
Add comment 5982 Plus   ShellListView.ThumbnailSize = 16;
Add comment 5956 5983 break;
Add comment 5957 5984 case 4:
Add comment 5958 Minus  
Add comment 5959 Minus   Explorer.ContentOptions.ViewMode = ExplorerBrowserViewMode.List;
Add comment 5985 Plus   ShellListView.View = ShellViewStyle.List;
Add comment 5960 5986 break;
Add comment 5961 5987 case 5:
FileOperation.csproj
/FileOperation/FileOperation.csproj-2+2
/FileOperation/FileOperation.csproj
Add comment 81 </Compile>
Add comment 82 </ItemGroup>
Add comment 83 <ItemGroup>
Add comment 84 Minus   <ProjectReference Include="..\Windows API Code Pack 1.1\source\WindowsAPICodePack\Shell\Shell.csproj">
Add comment 84 Plus   <ProjectReference Include="..\Windows API Code Pack 1.1\source\WindowsAPICodePack\Shell\ShellCodePack.csproj">
Add comment 85 <Project>{aa0c00cb-8699-4f37-bfae-40ca87acc06d}</Project>
Add comment 86 Minus   <Name>Shell</Name>
Add comment 86 Plus   <Name>ShellCodePack</Name>
Add comment 87 </ProjectReference>
Add comment 88 </ItemGroup>
Add comment 89 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
ShellItemImpl.cs
/Shell/Interop/VistaBridge/ShellItemImpl.cs+178
/Shell/Interop/VistaBridge/ShellItemImpl.cs
Add comment 1 Plus  // GongSolutions.Shell - A Windows Shell library for .Net.
Add comment 2 Plus  // Copyright (C) 2007-2009 Steven J. Kirk
Add comment 3 Plus  //
Add comment 4 Plus  // This program is free software; you can redistribute it and/or
Add comment 5 Plus  // modify it under the terms of the GNU Lesser General Public
Add comment 6 Plus  // License as published by the Free Software Foundation; either
Add comment 7 Plus  // version 2 of the License, or (at your option) any later version.
Add comment 8 Plus  //
Add comment 9 Plus  // This program is distributed in the hope that it will be useful,
Add comment 10 Plus  // but WITHOUT ANY WARRANTY; without even the implied warranty of
Add comment 11 Plus  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Add comment 12 Plus  // GNU Lesser General Public License for more details.
Add comment 13 Plus  //
Add comment 14 Plus  // You should have received a copy of the GNU Lesser General Public
Add comment 15 Plus  // License along with this program; if not, write to the Free
Add comment 16 Plus  // Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Add comment 17 Plus  // Boston, MA 2110-1301, USA.
Add comment 18 Plus  //
Add comment 19 Plus  using System;
Add comment 20 Plus  using System.Runtime.InteropServices;
Add comment 21 Plus  using System.Text;
Add comment 22 Plus  
Add comment 23 Plus  namespace GongSolutions.Shell.Interop.VistaBridge
Add comment 24 Plus  {
Add comment 25 Plus   class ShellItemImpl : IDisposable, IShellItem
Add comment 26 Plus   {
Add comment 27 Plus   public ShellItemImpl(IntPtr pidl, bool owner)
Add comment 28 Plus   {
Add comment 29 Plus   if (owner)
Add comment 30 Plus   {
Add comment 31 Plus   m_Pidl = pidl;
Add comment 32 Plus   }
Add comment 33 Plus   else
Add comment 34 Plus   {
Add comment 35 Plus   m_Pidl = Shell32.ILClone(pidl);
Add comment 36 Plus   }
Add comment 37 Plus   }
Add comment 38 Plus  
Add comment 39 Plus   ~ShellItemImpl()
Add comment 40 Plus   {
Add comment 41 Plus   Dispose(false);
Add comment 42 Plus   }
Add comment 43 Plus  
Add comment 44 Plus   public IntPtr BindToHandler(IntPtr pbc, Guid bhid, Guid riid)
Add comment 45 Plus   {
Add comment 46 Plus   if (riid == typeof(IShellFolder).GUID)
Add comment 47 Plus   {
Add comment 48 Plus   return Marshal.GetIUnknownForObject(GetIShellFolder());
Add comment 49 Plus   }
Add comment 50 Plus   else
Add comment 51 Plus   {
Add comment 52 Plus   throw new InvalidCastException();
Add comment 53 Plus   }
Add comment 54 Plus   }
Add comment 55 Plus  
Add comment 56 Plus   public void Dispose()
Add comment 57 Plus   {
Add comment 58 Plus   Dispose(true);
Add comment 59 Plus   }
Add comment 60 Plus  
Add comment 61 Plus   public HResult GetParent(out IShellItem ppsi)
Add comment 62 Plus   {
Add comment 63 Plus   IntPtr pidl = Shell32.ILClone(m_Pidl);
Add comment 64 Plus   if (Shell32.ILRemoveLastID(pidl))
Add comment 65 Plus   {
Add comment 66 Plus   ppsi = new ShellItemImpl(pidl, true);
Add comment 67 Plus   return HResult.S_OK;
Add comment 68 Plus   }
Add comment 69 Plus   else
Add comment 70 Plus   {
Add comment 71 Plus   ppsi = null;
Add comment 72 Plus   return HResult.MK_E_NOOBJECT;
Add comment 73 Plus   }
Add comment 74 Plus   }
Add comment 75 Plus  
Add comment 76 Plus   public IntPtr GetDisplayName(SIGDN sigdnName)
Add comment 77 Plus   {
Add comment 78 Plus   if (sigdnName == SIGDN.FILESYSPATH)
Add comment 79 Plus   {
Add comment 80 Plus   StringBuilder result = new StringBuilder(512);
Add comment 81 Plus   if (!Shell32.SHGetPathFromIDList(m_Pidl, result))
Add comment 82 Plus   throw new ArgumentException();
Add comment 83 Plus   return Marshal.StringToHGlobalUni(result.ToString());
Add comment 84 Plus   }
Add comment 85 Plus   else
Add comment 86 Plus   {
Add comment 87 Plus   IShellFolder parentFolder = GetParent().GetIShellFolder();
Add comment 88 Plus   IntPtr childPidl = Shell32.ILFindLastID(m_Pidl);
Add comment 89 Plus   StringBuilder builder = new StringBuilder(512);
Add comment 90 Plus   STRRET strret = new STRRET();
Add comment 91 Plus  
Add comment 92 Plus   parentFolder.GetDisplayNameOf(childPidl,
Add comment 93 Plus   (SHGNO)((int)sigdnName & 0xffff), out strret);
Add comment 94 Plus   ShlWapi.StrRetToBuf(ref strret, childPidl, builder,
Add comment 95 Plus   (uint)builder.Capacity);
Add comment 96 Plus   return Marshal.StringToHGlobalUni(builder.ToString());
Add comment 97 Plus   }
Add comment 98 Plus   }
Add comment 99 Plus  
Add comment 100 Plus   public SFGAO GetAttributes(SFGAO sfgaoMask)
Add comment 101 Plus   {
Add comment 102 Plus   IShellFolder parentFolder = GetParent().GetIShellFolder();
Add comment 103 Plus   SFGAO result = sfgaoMask;
Add comment 104 Plus  
Add comment 105 Plus   parentFolder.GetAttributesOf(1,
Add comment 106 Plus   new IntPtr[] { Shell32.ILFindLastID(m_Pidl) },
Add comment 107 Plus   ref result);
Add comment 108 Plus   return result & sfgaoMask;
Add comment 109 Plus   }
Add comment 110 Plus  
Add comment 111 Plus   public int Compare(IShellItem psi, SICHINT hint)
Add comment 112 Plus   {
Add comment 113 Plus   ShellItemImpl other = (ShellItemImpl)psi;
Add comment 114 Plus   ShellItemImpl myParent = GetParent();
Add comment 115 Plus   ShellItemImpl theirParent = other.GetParent();
Add comment 116 Plus  
Add comment 117 Plus   if (Shell32.ILIsEqual(myParent.m_Pidl, theirParent.m_Pidl))
Add comment 118 Plus   {
Add comment 119 Plus   return myParent.GetIShellFolder().CompareIDs((SHCIDS)hint,
Add comment 120 Plus   Shell32.ILFindLastID(m_Pidl),
Add comment 121 Plus   Shell32.ILFindLastID(other.m_Pidl));
Add comment 122 Plus   }
Add comment 123 Plus   else
Add comment 124 Plus   {
Add comment 125 Plus   return 1;
Add comment 126 Plus   }
Add comment 127 Plus   }
Add comment 128 Plus  
Add comment 129 Plus   public IntPtr Pidl
Add comment 130 Plus   {
Add comment 131 Plus   get { return m_Pidl; }
Add comment 132 Plus   }
Add comment 133 Plus  
Add comment 134 Plus   protected void Dispose(bool dispose)
Add comment 135 Plus   {
Add comment 136 Plus   Shell32.ILFree(m_Pidl);
Add comment 137 Plus   }
Add comment 138 Plus  
Add comment 139 Plus   ShellItemImpl GetParent()
Add comment 140 Plus   {
Add comment 141 Plus   IntPtr pidl = Shell32.ILClone(m_Pidl);
Add comment 142 Plus  
Add comment 143 Plus   if (Shell32.ILRemoveLastID(pidl))
Add comment 144 Plus   {
Add comment 145 Plus   return new ShellItemImpl(pidl, true);
Add comment 146 Plus   }
Add comment 147 Plus   else
Add comment 148 Plus   {
Add comment 149 Plus   return this;
Add comment 150 Plus   }
Add comment 151 Plus   }
Add comment 152 Plus  
Add comment 153 Plus   IShellFolder GetIShellFolder()
Add comment 154 Plus   {
Add comment 155 Plus   IShellFolder desktop = Shell32.SHGetDesktopFolder();
Add comment 156 Plus   IntPtr desktopPidl;
Add comment 157 Plus  
Add comment 158 Plus   Shell32.SHGetSpecialFolderLocation(IntPtr.Zero, CSIDL.DESKTOP,
Add comment 159 Plus   out desktopPidl); ;
Add comment 160 Plus  
Add comment 161 Plus   if (Shell32.ILIsEqual(m_Pidl, desktopPidl))
Add comment 162 Plus   {
Add comment 163 Plus   return desktop;
Add comment 164 Plus   }
Add comment 165 Plus   else
Add comment 166 Plus   {
Add comment 167 Plus   IntPtr result;
Add comment 168 Plus   desktop.BindToObject(m_Pidl, IntPtr.Zero,
Add comment 169 Plus   typeof(IShellFolder).GUID, out result);
Add comment 170 Plus   return (IShellFolder)Marshal.GetTypedObjectForIUnknown(result,
Add comment 171 Plus   typeof(IShellFolder));
Add comment 172 Plus   }
Add comment 173 Plus   }
Add comment 174 Plus  
Add comment 175 Plus   IntPtr m_Pidl;
Add comment 176 Plus   }
Add comment 177 Plus  }
Add comment 178 Plus  
BHID.cs
/Shell/Interop/BHID.cs+43
/Shell/Interop/BHID.cs
Add comment 1 Plus  // GongSolutions.Shell - A Windows Shell library for .Net.
Add comment 2 Plus  // Copyright (C) 2007-2009 Steven J. Kirk
Add comment 3 Plus  //
Add comment 4 Plus  // This program is free software; you can redistribute it and/or
Add comment 5 Plus  // modify it under the terms of the GNU Lesser General Public
Add comment 6 Plus  // License as published by the Free Software Foundation; either
Add comment 7 Plus  // version 2 of the License, or (at your option) any later version.
Add comment 8 Plus  //
Add comment 9 Plus  // This program is distributed in the hope that it will be useful,
Add comment 10 Plus  // but WITHOUT ANY WARRANTY; without even the implied warranty of
Add comment 11 Plus  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Add comment 12 Plus  // GNU Lesser General Public License for more details.
Add comment 13 Plus  //
Add comment 14 Plus  // You should have received a copy of the GNU Lesser General Public
Add comment 15 Plus  // License along with this program; if not, write to the Free
Add comment 16 Plus  // Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Add comment 17 Plus  // Boston, MA 2110-1301, USA.
Add comment 18 Plus  //
Add comment 19 Plus  using System;
Add comment 20 Plus  using System.Collections.Generic;
Add comment 21 Plus  using System.Text;
Add comment 22 Plus  
Add comment 23 Plus  #pragma warning disable 1591
Add comment 24 Plus  
Add comment 25 Plus  namespace GongSolutions.Shell.Interop
Add comment 26 Plus  {
Add comment 27 Plus   public class BHID
Add comment 28 Plus   {
Add comment 29 Plus   public static Guid SFObject
Add comment 30 Plus   {
Add comment 31 Plus   get { return m_SFObject; }
Add comment 32 Plus   }
Add comment 33 Plus  
Add comment 34 Plus   public static Guid SFUIObject
Add comment 35 Plus   {
Add comment 36 Plus   get { return m_SFUIObject; }
Add comment 37 Plus   }
Add comment 38 Plus  
Add comment 39 Plus   static Guid m_SFObject = new Guid("3981e224-f559-11d3-8e3a-00c04f6837d5");
Add comment 40 Plus   static Guid m_SFUIObject = new Guid("3981e225-f559-11d3-8e3a-00c04f6837d5");
Add comment 41 Plus   }
Add comment 42 Plus  }
Add comment 43 Plus  
CoClass.cs
/Shell/Interop/CoClass.cs
/Shell/Interop/CoClass.cs
ComCtl32.cs
/Shell/Interop/ComCtl32.cs
/Shell/Interop/ComCtl32.cs
Constants.cs
/Shell/Interop/Constants.cs
/Shell/Interop/Constants.cs
Enums.cs
/Shell/Interop/Enums.cs
/Shell/Interop/Enums.cs
HResult.cs
/Shell/Interop/HResult.cs
/Shell/Interop/HResult.cs
ICommDlgBrowser.cs
/Shell/Interop/ICommDlgBrowser.cs
/Shell/Interop/ICommDlgBrowser.cs
IContextMenu.cs
/Shell/Interop/IContextMenu.cs
/Shell/Interop/IContextMenu.cs
IDropSource.cs
/Shell/Interop/IDropSource.cs
/Shell/Interop/IDropSource.cs
IDropTarget.cs
/Shell/Interop/IDropTarget.cs
/Shell/Interop/IDropTarget.cs
IEnumIDList.cs
/Shell/Interop/IEnumIDList.cs
/Shell/Interop/IEnumIDList.cs
IFileDialog.cs
/Shell/Interop/IFileDialog.cs
/Shell/Interop/IFileDialog.cs
IFolderView.cs
/Shell/Interop/IFolderView.cs
/Shell/Interop/IFolderView.cs
IKnownFolder.cs
/Shell/Interop/IKnownFolder.cs
/Shell/Interop/IKnownFolder.cs
IKnownFolderManager.cs
/Shell/Interop/IKnownFolderManager.cs
/Shell/Interop/IKnownFolderManager.cs
IOleCommandTarget.cs
/Shell/Interop/IOleCommandTarget.cs
/Shell/Interop/IOleCommandTarget.cs
IQueryInfo.cs
/Shell/Interop/IQueryInfo.cs
/Shell/Interop/IQueryInfo.cs
IServiceProvider.cs
/Shell/Interop/IServiceProvider.cs
/Shell/Interop/IServiceProvider.cs
IShellBrowser.cs
/Shell/Interop/IShellBrowser.cs
/Shell/Interop/IShellBrowser.cs
IShellFolder.cs
/Shell/Interop/IShellFolder.cs
/Shell/Interop/IShellFolder.cs
IShellItem.cs
/Shell/Interop/IShellItem.cs
/Shell/Interop/IShellItem.cs
IShellItemArray.cs
/Shell/Interop/IShellItemArray.cs
/Shell/Interop/IShellItemArray.cs
IShellView.cs
/Shell/Interop/IShellView.cs
/Shell/Interop/IShellView.cs
Kernel32.cs
/Shell/Interop/Kernel32.cs
/Shell/Interop/Kernel32.cs
NativePoint.cs
/Shell/Interop/NativePoint.cs
/Shell/Interop/NativePoint.cs
Ole32.cs
/Shell/Interop/Ole32.cs
/Shell/Interop/Ole32.cs
Shell32.cs
/Shell/Interop/Shell32.cs
/Shell/Interop/Shell32.cs
ShlWapi.cs
/Shell/Interop/ShlWapi.cs
/Shell/Interop/ShlWapi.cs
User32.cs
/Shell/Interop/User32.cs
/Shell/Interop/User32.cs
AssemblyInfo.cs
/Shell/Properties/AssemblyInfo.cs
/Shell/Properties/AssemblyInfo.cs
Resources.Designer.cs
/Shell/Properties/Resources.Designer.cs
/Shell/Properties/Resources.Designer.cs
Resources.resx
/Shell/Properties/Resources.resx
/Shell/Properties/Resources.resx
Back.bmp
/Shell/Resources/Back.bmp
/Shell/Resources/Back.bmp
Forward.bmp
/Shell/Resources/Forward.bmp
/Shell/Resources/Forward.bmp
NewFolder.bmp
/Shell/Resources/NewFolder.bmp
/Shell/Resources/NewFolder.bmp
Up.bmp
/Shell/Resources/Up.bmp
/Shell/Resources/Up.bmp
Views.bmp
/Shell/Resources/Views.bmp
/Shell/Resources/Views.bmp
FileDialogForm.cs
/Shell/FileDialogForm.cs
/Shell/FileDialogForm.cs
FileDialogForm.Designer.cs
/Shell/FileDialogForm.Designer.cs
/Shell/FileDialogForm.Designer.cs
FileDialogForm.resx
/Shell/FileDialogForm.resx
/Shell/FileDialogForm.resx
FileDialogToolbar.cs
/Shell/FileDialogToolbar.cs
/Shell/FileDialogToolbar.cs
FileDialogToolbar.Designer.cs
/Shell/FileDialogToolbar.Designer.cs
/Shell/FileDialogToolbar.Designer.cs
FileDialogToolbar.resx
/Shell/FileDialogToolbar.resx
/Shell/FileDialogToolbar.resx
FileFilterComboBox.cs
/Shell/FileFilterComboBox.cs
/Shell/FileFilterComboBox.cs
FileNameComboBox.cs
/Shell/FileNameComboBox.cs
/Shell/FileNameComboBox.cs
FilterItem.cs
/Shell/FilterItem.cs
/Shell/FilterItem.cs
KnownFolderManager.cs
/Shell/KnownFolderManager.cs
/Shell/KnownFolderManager.cs
LVItemColor.cs
/Shell/LVItemColor.cs
/Shell/LVItemColor.cs
PlacesToolbar.cs
/Shell/PlacesToolbar.cs
/Shell/PlacesToolbar.cs
PlacesToolbar.Designer.cs
/Shell/PlacesToolbar.Designer.cs
/Shell/PlacesToolbar.Designer.cs
PlacesToolbar.resx
/Shell/PlacesToolbar.resx
/Shell/PlacesToolbar.resx
Shell.csproj
/Shell/Shell.csproj
/Shell/Shell.csproj
ShellBrowser.cs
/Shell/ShellBrowser.cs
/Shell/ShellBrowser.cs
ShellComboBox.cs
/Shell/ShellComboBox.cs
/Shell/ShellComboBox.cs
ShellContextMenu.cs
/Shell/ShellContextMenu.cs
/Shell/ShellContextMenu.cs
ShellDeffViewSubClassedWindow.cs
/Shell/ShellDeffViewSubClassedWindow.cs
/Shell/ShellDeffViewSubClassedWindow.cs
ShellHistory.cs
/Shell/ShellHistory.cs
/Shell/ShellHistory.cs
ShellItem.cs
/Shell/ShellItem.cs
/Shell/ShellItem.cs
ShellItemBrowseForm.cs
/Shell/ShellItemBrowseForm.cs
/Shell/ShellItemBrowseForm.cs
ShellItemBrowseForm.Designer.cs
/Shell/ShellItemBrowseForm.Designer.cs
/Shell/ShellItemBrowseForm.Designer.cs
ShellItemBrowseForm.resx
/Shell/ShellItemBrowseForm.resx
/Shell/ShellItemBrowseForm.resx
ShellItemEditor.cs
/Shell/ShellItemEditor.cs
/Shell/ShellItemEditor.cs
ShellNotificationListener.cs
/Shell/ShellNotificationListener.cs
/Shell/ShellNotificationListener.cs
ShellTreeView.cs
/Shell/ShellTreeView.cs
/Shell/ShellTreeView.cs
ShellView.cs
/Shell/ShellView.cs
/Shell/ShellView.cs
SysImageList.cs
/Shell/SysImageList.cs
/Shell/SysImageList.cs
SystemImageList.cs
/Shell/SystemImageList.cs
/Shell/SystemImageList.cs
TreeViewBase.cs
/Shell/TreeViewBase.cs
/Shell/TreeViewBase.cs
SubClass.cs
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/ExplorerBrowser/SubClass.cs
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/ExplorerBrowser/SubClass.cs
ShellCodePack.csproj
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/ShellCodePack.csproj
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/ShellCodePack.csproj
Renamed from
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/Shell.csproj
The file content is identical.
WindowsAPI.cs
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/WindowsAPI.cs
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/WindowsAPI.cs
BetterExplorerControls.csproj
/WpfControlLibrary1/BetterExplorerControls.csproj
/WpfControlLibrary1/BetterExplorerControls.csproj
PreviewPane.xaml.cs
/WpfControlLibrary1/PreviewPane.xaml.cs
/WpfControlLibrary1/PreviewPane.xaml.cs
BExplorer.sln
/BExplorer.sln
/BExplorer.sln