- Fixes for grouping...
c940fbae
Dimitar Tsenev
committed
457 changed files
MainWindow_Tabs.cs
/BExplorer/BetterExplorer/_MainWindow/MainWindow_Tabs.cs-66+33
/BExplorer/BetterExplorer/_MainWindow/MainWindow_Tabs.cs
Add comment 7 using BExplorer.Shell.Interop;
Add comment 8 using MenuItem = Fluent.MenuItem;
Add comment 9
Add comment 10 Minus  namespace BetterExplorer
Add comment 11 Minus  {
Add comment 10 Plus  namespace BetterExplorer {
Add comment 12 11
Add comment 13 Minus   partial class MainWindow
Add comment 14 Minus   {
Add comment 12 Plus   partial class MainWindow {
Add comment 15 13
Add comment 16 Minus   private void InitializeInitialTabs()
Add comment 17 Minus   {
Add comment 14 Plus   private void InitializeInitialTabs() {
Add comment 18 15 var InitialTabs = Utilities.GetRegistryValue("OpenedTabs", "").ToString().Split(new char[] { ';' }, StringSplitOptions.RemoveEmptyEntries);
Add comment 19 Minus   if (InitialTabs.Length == 0 || !_IsrestoreTabs)
Add comment 20 Minus   {
Add comment 16 Plus   if (InitialTabs.Length == 0 || !_IsrestoreTabs) {
Add comment 21 17 var sho = FileSystemListItem.ToFileSystemItem(this._ShellListView.LVHandle, tcMain.StartUpLocation.ToShellParsingName());
Add comment 22 18
Add comment 23 19 if (tcMain.Items.OfType<Wpf.Controls.TabItem>().Any())
Add comment 24 20 NavigationController(sho);
Add comment 25 Minus   else
Add comment 26 Minus   {
Add comment 21 Plus   else {
Add comment 27 22 var tab = tcMain.NewTab(sho, true);
Add comment 28 23 this.SelectTab(tab);
Add comment 29 24 }
Add comment 30 25 }
Add comment 31 Minus   if (_IsrestoreTabs)
Add comment 32 Minus   {
Add comment 26 Plus   if (_IsrestoreTabs) {
Add comment 33 27 isOnLoad = true;
Add comment 34 28 int i = 0;
Add comment 35 Minus   foreach (string str in InitialTabs)
Add comment 36 Minus   {
Add comment 37 Minus   try
Add comment 38 Minus   {
Add comment 29 Plus   foreach (string str in InitialTabs) {
Add comment 30 Plus   try {
Add comment 39 31 i++;
Add comment 40 Minus   if (str.ToLowerInvariant() == "::{22877a6d-37a1-461a-91b0-dbda5aaebc99}")
Add comment 41 Minus   {
Add comment 32 Plus   if (str.ToLowerInvariant() == "::{22877a6d-37a1-461a-91b0-dbda5aaebc99}") {
Add comment 42 33 continue;
Add comment 43 34 }
Add comment 44 35 var tab = tcMain.NewTab(FileSystemListItem.ToFileSystemItem(this._ShellListView.LVHandle, str.ToShellParsingName()), i == InitialTabs.Length);
Add comment 45 36 if (i == InitialTabs.Length)
Add comment 46 37 this.SelectTab(tab);
Add comment 47 Minus   }
Add comment 48 Minus   catch
Add comment 49 Minus   {
Add comment 38 Plus   } catch {
Add comment 50 39 //AddToLog(String.Format("Unable to load {0} into a tab!", str));
Add comment 51 40 MessageBox.Show("BetterExplorer is unable to load one of the tabs from your last session. Your other tabs are perfectly okay though! \r\n\r\nThis location was unable to be loaded: " + str, "Unable to Create New Tab", MessageBoxButton.OK, MessageBoxImage.Error);
Add comment 52 41 }
Add comment 53 42 }
Add comment 54 43
Add comment 55 Minus   if (tcMain.Items.Count == 0)
Add comment 56 Minus   {
Add comment 44 Plus   if (tcMain.Items.Count == 0) {
Add comment 57 45 tcMain.NewTab();
Add comment 58 46
Add comment 59 47 string idk = tcMain.StartUpLocation.StartsWith("::") ? tcMain.StartUpLocation.ToShellParsingName() : tcMain.StartUpLocation.Replace("\"", "");
Add comment 66 54 }
Add comment 67 55 }
Add comment 68 56
Add comment 69 Minus   private void SelectTab(Wpf.Controls.TabItem tab)
Add comment 70 Minus   {
Add comment 57 Plus   private void SelectTab(Wpf.Controls.TabItem tab) {
Add comment 71 58 if (tab == null) return;
Add comment 72 Minus   if (!tab.ShellObject.Equals(this._ShellListView.CurrentFolder) || tab.ShellObject.IsSearchFolder)
Add comment 73 Minus   {
Add comment 59 Plus   if (!tab.ShellObject.Equals(this._ShellListView.CurrentFolder) || tab.ShellObject.IsSearchFolder) {
Add comment 74 60 tcMain.isGoingBackOrForward = true;
Add comment 75 61 NavigationController(tab.ShellObject);
Add comment 76 62 var selectedItem = tab;
Add comment 78 64 var bmpSource = tab.ShellObject.ThumbnailSource(16, ShellThumbnailFormatOption.IconOnly, ShellThumbnailRetrievalOption.Default);
Add comment 79 65 selectedItem.Icon = bmpSource;
Add comment 80 66 selectedItem.ShellObject = tab.ShellObject;
Add comment 81 Minus   if (selectedItem != null)
Add comment 82 Minus   {
Add comment 67 Plus   if (selectedItem != null) {
Add comment 83 68 var selectedPaths = selectedItem.SelectedItems;
Add comment 84 Minus   if (selectedPaths != null && selectedPaths.Any())
Add comment 85 Minus   {
Add comment 86 Minus   foreach (var path in selectedPaths.ToArray())
Add comment 87 Minus   {
Add comment 69 Plus   if (selectedPaths != null && selectedPaths.Any()) {
Add comment 70 Plus   foreach (var path in selectedPaths.ToArray()) {
Add comment 88 71 var sho = this._ShellListView.Items.FirstOrDefault(w => w.ParsingName == path);
Add comment 89 Minus   if (sho != null)
Add comment 90 Minus   {
Add comment 91 Minus   var index = this._ShellListView.ItemsHashed[sho.GetUniqueID()];
Add comment 72 Plus   if (sho != null) {
Add comment 73 Plus   var index = sho.ItemIndex;
Add comment 92 74 this._ShellListView.SelectItemByIndex(index, true);
Add comment 93 75 selectedPaths.Remove(path);
Add comment 94 76 }
Add comment 95 77 }
Add comment 96 Minus   }
Add comment 97 Minus   else
Add comment 98 Minus   {
Add comment 78 Plus   } else {
Add comment 99 79 //this._ShellListView.ScrollToTop();
Add comment 100 80 }
Add comment 101 81 }
Add comment 102 82 }
Add comment 103 83 }
Add comment 104 84
Add comment 105 Minus   private void ConstructMoveToCopyToMenu()
Add comment 106 Minus   {
Add comment 85 Plus   private void ConstructMoveToCopyToMenu() {
Add comment 107 86 btnMoveto.Items.Clear();
Add comment 108 87 btnCopyto.Items.Clear();
Add comment 109 88
Add comment 116 95 var micDesktop = Utilities.Build_MenuItem(FindResource("btnctDesktopCP"), icon: bmpSourceDesktop, onClick: new RoutedEventHandler(btnctDesktop_Click));
Add comment 117 96
Add comment 118 97 MenuItem mimDocuments = new MenuItem(), micDocuments = new MenuItem();
Add comment 119 Minus   try
Add comment 120 Minus   {
Add comment 98 Plus   try {
Add comment 121 99 var sodc = FileSystemListItem.ToFileSystemItem(this._ShellListView.LVHandle, ((ShellItem)KnownFolders.Documents).Pidl);
Add comment 122 100 var bmpSourceDocuments = sodc.ThumbnailSource(16, ShellThumbnailFormatOption.IconOnly, ShellThumbnailRetrievalOption.Default);
Add comment 123 101
Add comment 124 102 mimDocuments = Utilities.Build_MenuItem(FindResource("btnctDocumentsCP"), icon: bmpSourceDocuments, onClick: new RoutedEventHandler(btnmtDocuments_Click));
Add comment 125 103 micDocuments = Utilities.Build_MenuItem(FindResource("btnctDocumentsCP"), icon: bmpSourceDocuments, onClick: new RoutedEventHandler(btnctDocuments_Click));
Add comment 126 Minus   }
Add comment 127 Minus   catch (Exception)
Add comment 128 Minus   {
Add comment 104 Plus   } catch (Exception) {
Add comment 129 105 mimDocuments = null;
Add comment 130 106 micDocuments = null;
Add comment 131 107 //catch the exception in case the user deleted that basic folder somehow
Add comment 132 108 }
Add comment 133 109
Add comment 134 110 MenuItem mimDownloads = new MenuItem(), micDownloads = new MenuItem();
Add comment 135 Minus   try
Add comment 136 Minus   {
Add comment 111 Plus   try {
Add comment 137 112 var sodd = FileSystemListItem.ToFileSystemItem(this._ShellListView.LVHandle, ((ShellItem)KnownFolders.Downloads).Pidl);
Add comment 138 113 var bmpSourceDownloads = sodd.ThumbnailSource(16, ShellThumbnailFormatOption.IconOnly, ShellThumbnailRetrievalOption.Default);
Add comment 139 114
Add comment 140 115 mimDownloads = Utilities.Build_MenuItem(FindResource("btnctDownloadsCP"), icon: bmpSourceDownloads, onClick: new RoutedEventHandler(btnmtDounloads_Click));
Add comment 141 116 micDownloads = Utilities.Build_MenuItem(FindResource("btnctDownloadsCP"), icon: bmpSourceDownloads, onClick: new RoutedEventHandler(btnctDounloads_Click));
Add comment 142 Minus   }
Add comment 143 Minus   catch (Exception)
Add comment 144 Minus   {
Add comment 117 Plus   } catch (Exception) {
Add comment 145 118 micDownloads = null;
Add comment 146 119 mimDownloads = null;
Add comment 147 120 //catch the exception in case the user deleted that basic folder somehow
Add comment 163 136 btnCopyto.Items.Add(micDesktop);
Add comment 164 137 btnCopyto.Items.Add(new Separator());
Add comment 165 138
Add comment 166 Minus   foreach (var item in tcMain.Items.OfType<Wpf.Controls.TabItem>())
Add comment 167 Minus   {
Add comment 139 Plus   foreach (var item in tcMain.Items.OfType<Wpf.Controls.TabItem>()) {
Add comment 168 140 bool IsAdditem = true;
Add comment 141 Plus   item.ShellObject.RecreateRCW();
Add comment 142 Plus   foreach (var mii in btnCopyto.Items.OfType<MenuItem>().Where(x => x.Tag != null)) {
Add comment 143 Plus  
Add comment 169 144
Add comment 170 Minus   foreach (var mii in btnCopyto.Items.OfType<MenuItem>().Where(x => x.Tag != null))
Add comment 171 Minus   {
Add comment 172 Minus   if ((mii.Tag as IListItemEx).Equals(item.ShellObject))
Add comment 173 Minus   {
Add comment 145 Plus   if ((mii.Tag as IListItemEx).Equals(item.ShellObject)) {
Add comment 174 146 IsAdditem = false;
Add comment 175 147 }
Add comment 176 148 }
Add comment 177 149
Add comment 178 Minus   if (IsAdditem && item.ShellObject.IsFileSystem)
Add comment 179 Minus   {
Add comment 180 Minus   try
Add comment 181 Minus   {
Add comment 150 Plus   if (IsAdditem && item.ShellObject.IsFileSystem) {
Add comment 151 Plus   try {
Add comment 182 152 var so = item.ShellObject;
Add comment 183 153 var bmpSource = so.ThumbnailSource(16, ShellThumbnailFormatOption.IconOnly, ShellThumbnailRetrievalOption.Default);
Add comment 184 154 btnMoveto.Items.Add(Utilities.Build_MenuItem(item.ShellObject.DisplayName, item.ShellObject,
Add comment 185 155 bmpSource, onClick: new RoutedEventHandler(mim_Click)));
Add comment 186 156
Add comment 187 157 btnCopyto.Items.Add(Utilities.Build_MenuItem(item.ShellObject.DisplayName, item.ShellObject, bmpSource));
Add comment 188 Minus   }
Add comment 189 Minus   catch
Add comment 190 Minus   {
Add comment 158 Plus   } catch {
Add comment 191 159 //Do nothing if ShellItem is not available anymore and close the problematic item
Add comment 192 160 //tcMain.RemoveTabItem(item);
Add comment 193 161 }
Add comment 203 171 Wpf.Controls.TabItem _CurrentlySelectedItem = null;
Add comment 204 172
Add comment 205 173 [Obsolete("I do not think we need this")]
Add comment 206 Minus   private void tcMain_SelectionChanged(object sender, SelectionChangedEventArgs e)
Add comment 207 Minus   {
Add comment 174 Plus   private void tcMain_SelectionChanged(object sender, SelectionChangedEventArgs e) {
Add comment 208 175
Add comment 209 176 }
Add comment 210 177 }
BetterExplorer.csproj
/BExplorer/BetterExplorer/BetterExplorer.csproj+4
/BExplorer/BetterExplorer/BetterExplorer.csproj
Add comment 703 <Project>{6a63405a-b6bb-4095-b48c-e720de021482}</Project>
Add comment 704 <Name>WpfDocumentPreviewer</Name>
Add comment 705 </ProjectReference>
Add comment 706 Plus   <ProjectReference Include="..\..\Xceed.Wpf.Toolkit\Xceed.Wpf.Toolkit.csproj">
Add comment 707 Plus   <Project>{72e591d6-8f83-4d8c-8f67-9c325e623234}</Project>
Add comment 708 Plus   <Name>Xceed.Wpf.Toolkit</Name>
Add comment 709 Plus   </ProjectReference>
Add comment 706 710 </ItemGroup>
Add comment 707 711 <ItemGroup>
Add comment 708 712 <Resource Include="Explorer.ico" />
BetterExplorer.csproj.user
/BExplorer/BetterExplorer/BetterExplorer.csproj.user-1+1
/BExplorer/BetterExplorer/BetterExplorer.csproj.user
Add comment 9 <ErrorReportUrlHistory />
Add comment 10 <FallbackCulture>en-US</FallbackCulture>
Add comment 11 <VerifyUploadedFiles>false</VerifyUploadedFiles>
Add comment 12 Minus   <ProjectView>ProjectFiles</ProjectView>
Add comment 12 Plus   <ProjectView>ShowAllFiles</ProjectView>
Add comment 13 </PropertyGroup>
Add comment 14 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
Add comment 15 <EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
MainWindow.xaml
/BExplorer/BetterExplorer/MainWindow.xaml+15
/BExplorer/BetterExplorer/MainWindow.xaml
Add comment 16 xmlns:ni="http://www.hardcodet.net/taskbar"
Add comment 17 xmlns:odc="clr-namespace:Odyssey.Controls;assembly=Odyssey"
Add comment 18 xmlns:shell="clr-namespace:BExplorer.Shell;assembly=BExplorerShell"
Add comment 19 Plus   xmlns:toolkit="http://schemas.xceed.com/wpf/xaml/toolkit"
Add comment 19 20 Title="Better Explorer"
Add comment 20 21 MinWidth="640"
Add comment 21 22 MinHeight="480"
Add comment 1086 1087 Checked="chkTreeExpand_CheckChanged"
Add comment 1087 1088 Header="{DynamicResource chkTreeExpandCP}"
Add comment 1088 1089 Ribbon:KeyTip.Keys="T"
Add comment 1090 Plus   IsEnabled="False"
Add comment 1089 1091 Unchecked="chkTreeExpand_CheckChanged">
Add comment 1090 1092 <Ribbon:CheckBox.ToolTip>
Add comment 1091 1093 <Ribbon:ScreenTip
Add comment 1138 1140 />
Add comment 1139 1141 </Ribbon:CheckBox.ToolTip>
Add comment 1140 1142 </Ribbon:CheckBox>
Add comment 1143 Plus   <Ribbon:SeparatorTabItem Margin="0,0,0,5" Header="Item Label Colorizing" />
Add comment 1144 Plus   <DataGrid x:Name="grdItemTextColor" Height="150" HorizontalAlignment="Stretch" AutoGenerateColumns="False" CanUserAddRows="True" ItemsSource="{Binding Path=LVItemsColorCol}">
Add comment 1145 Plus   <DataGrid.Columns>
Add comment 1146 Plus   <DataGridTextColumn Header="Extensions" Width="*" Binding="{Binding ExtensionList, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"/>
Add comment 1147 Plus   <DataGridTemplateColumn Header="Color" Width="100">
Add comment 1148 Plus   <DataGridTemplateColumn.CellTemplate>
Add comment 1149 Plus   <DataTemplate>
Add comment 1150 Plus   <toolkit:ColorPicker SelectedColor="{Binding TextColor, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"></toolkit:ColorPicker>
Add comment 1151 Plus   </DataTemplate>
Add comment 1152 Plus   </DataGridTemplateColumn.CellTemplate>
Add comment 1153 Plus   </DataGridTemplateColumn>
Add comment 1154 Plus   </DataGrid.Columns>
Add comment 1155 Plus   </DataGrid>
Add comment 1141 1156 </StackPanel>
Add comment 1142 1157 </Grid>
Add comment 1143 1158 </TabItem>
MainWindow.xaml.cs
/BExplorer/BetterExplorer/MainWindow.xaml.cs-42+77
/BExplorer/BetterExplorer/MainWindow.xaml.cs
Add comment 1 using System;
Add comment 2 using System.Collections.Generic;
Add comment 3 Plus  using System.Collections.ObjectModel;
Add comment 3 4 using System.Collections.Specialized;
Add comment 4 5 using System.ComponentModel;
Add comment 5 6 using System.Diagnostics;
Add comment 24 25 using System.Windows.Media.Imaging;
Add comment 25 26 using System.Windows.Shell;
Add comment 26 27 using System.Windows.Threading;
Add comment 28 Plus  using System.Xml;
Add comment 27 29 using System.Xml.Linq;
Add comment 28 30 using BetterExplorer.Networks;
Add comment 29 31 using BetterExplorer.UsbEject;
Add comment 45 47
Add comment 46 48 using WIN = System.Windows;
Add comment 47 49 using BExplorer.Shell._Plugin_Interfaces;
Add comment 50 Plus  using Color = System.Drawing.Color;
Add comment 48 51
Add comment 49 52
Add comment 50 53 namespace BetterExplorer {
Add comment 114 117 #endregion
Add comment 115 118 public IntPtr Handle;
Add comment 116 119 public bool IsMultipleWindowsOpened { get; set; }
Add comment 117 Minus  
Add comment 120 Plus   public ObservableCollectionEx<LVItemColor> LVItemsColorCol { get; set; }
Add comment 118 121 #region Events
Add comment 119 122
Add comment 120 123 private void btnAbout_Click(object sender, RoutedEventArgs e) => new fmAbout(this).ShowDialog();
Add comment 237 240 if (File.Exists(itemColorSettingsLocation)) {
Add comment 238 241 var docs = XDocument.Load(itemColorSettingsLocation);
Add comment 239 242
Add comment 240 Minus   this.LVItemsColor = docs.Root.Elements("ItemColorRow")
Add comment 243 Plus   docs.Root.Elements("ItemColorRow")
Add comment 241 244 .Select(element => new LVItemColor(element.Elements().ToArray()[0].Value,
Add comment 242 Minus   System.Drawing.Color.FromArgb(Convert.ToInt32(element.Elements().ToArray()[1].Value)))).ToList();
Add comment 245 Plus   System.Windows.Media.Color.FromArgb(BitConverter.GetBytes(Convert.ToInt32(element.Elements().ToArray()[1].Value))[0], BitConverter.GetBytes(Convert.ToInt32(element.Elements().ToArray()[1].Value))[1], BitConverter.GetBytes(Convert.ToInt32(element.Elements().ToArray()[1].Value))[2], BitConverter.GetBytes(Convert.ToInt32(element.Elements().ToArray()[1].Value))[3]))).ToList().ForEach(e => this.LVItemsColorCol.Add(e));
Add comment 246 Plus  
Add comment 243 247 }
Add comment 244 248 });
Add comment 245 249 }
Add comment 1250 1254 this._ShellListView.Navigated += ShellListView_Navigated;
Add comment 1251 1255 this._ShellListView.ViewStyleChanged += ShellListView_ViewStyleChanged;
Add comment 1252 1256 this._ShellListView.SelectionChanged += ShellListView_SelectionChanged;
Add comment 1253 Minus   this._ShellListView.LVItemsColorCodes = this.LVItemsColor;
Add comment 1257 Plus   this._ShellListView.LVItemsColorCodes = this.LVItemsColorCol;
Add comment 1254 1258 this._ShellListView.ItemUpdated += ShellListView_ItemUpdated;
Add comment 1255 1259 this._ShellListView.ColumnHeaderRightClick += ShellListView_ColumnHeaderRightClick;
Add comment 1256 1260 this._ShellListView.KeyJumpKeyDown += ShellListView_KeyJumpKeyDown;
Add comment 1270 1274 Placement = System.Windows.Controls.Primitives.PlacementMode.AbsolutePoint,
Add comment 1271 1275 HorizontalOffset = e.ActionPoint.X,
Add comment 1272 1276 VerticalOffset = e.ActionPoint.Y,
Add comment 1273 Minus   IsOpen = true
Add comment 1277 Plus   IsOpen = true,
Add comment 1278 Plus   StaysOpen = true,
Add comment 1274 1279 };
Add comment 1275 Minus  
Add comment 1276 1280 var Things = new List<string>();
Add comment 1277 1281 var SelectedColumn = this._ShellListView.Collumns[e.ColumnIndex];
Add comment 1278 1282 if (SelectedColumn.CollumnType == typeof(String)) {
Add comment 1279 1283 Things.AddRange(new[] { "0 - 9", "A - H", "I - P", "Q - Z", "Other" });
Add comment 1280 1284 } else if (SelectedColumn.CollumnType == typeof(DateTime)) {
Add comment 1281 1285 var Container = new ItemsControl();
Add comment 1282 Minus   Container.Items.Add(new MenuItem() { Icon = new ImageSourceConverter().ConvertFromString(packUri) as ImageSource, Header = "Select a date or date range:", HorizontalContentAlignment = HorizontalAlignment.Stretch, HorizontalAlignment = HorizontalAlignment.Stretch });
Add comment 1286 Plus   Container.Items.Add(new MenuItem() { Icon = new ImageSourceConverter().ConvertFromString(packUri) as ImageSource, Header = "Select a date or date range:", HorizontalContentAlignment = HorizontalAlignment.Stretch, HorizontalAlignment = HorizontalAlignment.Stretch, IsCheckable = true, StaysOpenOnClick = true});
Add comment 1283 1287 Container.Items.Add(new Calendar() { SelectionMode = CalendarSelectionMode.SingleRange, Margin = new Thickness(30, 0, 0, 0) });
Add comment 1284 1288 menu.AddItem(Container);
Add comment 1285 1289
Add comment 1296 1300 IsCheckable = true,
Add comment 1297 1301 Header = item,
Add comment 1298 1302 HorizontalContentAlignment = HorizontalAlignment.Stretch,
Add comment 1299 Minus   HorizontalAlignment = HorizontalAlignment.Stretch
Add comment 1303 Plus   HorizontalAlignment = HorizontalAlignment.Stretch,
Add comment 1304 Plus   StaysOpenOnClick = true
Add comment 1300 1305 };
Add comment 1306 Plus  
Add comment 1301 1307 mnuItem.Click += new RoutedEventHandler(delegate (object s, RoutedEventArgs re) {
Add comment 1302 Minus   MessageBox.Show(mnuItem.Header.ToString());
Add comment 1308 Plus   //MessageBox.Show(mnuItem.Header.ToString());
Add comment 1309 Plus   var over = Mouse.DirectlyOver;
Add comment 1310 Plus   if (!(over is WIN.Controls.Image)) {
Add comment 1311 Plus   menu.IsOpen = false;
Add comment 1312 Plus   }
Add comment 1303 1313 });
Add comment 1304 1314 menu.AddItem(mnuItem);
Add comment 1305 1315 }
Add comment 1535 1545 }
Add comment 1536 1546
Add comment 1537 1547 private void Window_Loaded(object sender, RoutedEventArgs e) {
Add comment 1548 Plus   this.grdItemTextColor.ItemsSource = this.LVItemsColorCol;
Add comment 1538 1549 _keyjumpTimer.Interval = 1000;
Add comment 1539 1550 _keyjumpTimer.Tick += _keyjumpTimer_Tick;
Add comment 1540 1551 ShellTreeHost.Child = ShellTree;
Add comment 1699 1710 }
Add comment 1700 1711
Add comment 1701 1712 private void RibbonWindow_Closing(object sender, CancelEventArgs e) {
Add comment 1713 Plus   var itemColorSettingsLocation = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), @"BExplorer\itemcolors.cfg");
Add comment 1714 Plus   XmlDocument doc = new XmlDocument();
Add comment 1715 Plus   XmlElement elementRoot = doc.CreateElement(string.Empty, "Root", string.Empty);
Add comment 1716 Plus   foreach (var element in this.LVItemsColorCol)
Add comment 1717 Plus   {
Add comment 1718 Plus   XmlElement elementRow = doc.CreateElement(string.Empty, "ItemColorRow", string.Empty);
Add comment 1719 Plus   XmlElement elementExtension = doc.CreateElement(string.Empty, "Extensions", string.Empty);
Add comment 1720 Plus   elementExtension.InnerText = element.ExtensionList;
Add comment 1721 Plus   XmlElement elementColor = doc.CreateElement(string.Empty, "Color", string.Empty);
Add comment 1722 Plus   elementColor.InnerText = BitConverter.ToInt32(new byte[] { element.TextColor.A, element.TextColor.R, element.TextColor.G, element.TextColor.B }, 0).ToString();
Add comment 1723 Plus   elementRow.AppendChild(elementExtension);
Add comment 1724 Plus   elementRow.AppendChild(elementColor);
Add comment 1725 Plus   elementRoot.AppendChild(elementRow);
Add comment 1726 Plus   }
Add comment 1727 Plus   doc.AppendChild(elementRoot);
Add comment 1728 Plus   doc.Save(itemColorSettingsLocation);
Add comment 1729 Plus  
Add comment 1702 1730 if (this.OwnedWindows.OfType<FileOperationDialog>().Any()) {
Add comment 1703 1731 if (MessageBox.Show("Are you sure you want to cancel all running file operation tasks?", "", MessageBoxButton.YesNo) == MessageBoxResult.No) {
Add comment 1704 1732 e.Cancel = true;
Add comment 2098 2126 private void zoomSlider_ValueChanged(object sender, RoutedPropertyChangedEventArgs<double> e) => _ShellListView.ResizeIcons((int)e.NewValue);
Add comment 2099 2127
Add comment 2100 2128 void mig_Click(object sender, RoutedEventArgs e) {
Add comment 2101 Minus   if (!this._ShellListView.IsGroupsEnabled) this._ShellListView.EnableGroups();
Add comment 2129 Plus   this._ShellListView.EnableGroups();
Add comment 2102 2130 this._ShellListView.GenerateGroupsFromColumn((sender as MenuItem).Tag as Collumns);
Add comment 2103 2131 }
Add comment 2104 2132
Add comment 3503 3531 foreach (var path in selectedPaths.ToArray()) {
Add comment 3504 3532 var sho = this._ShellListView.Items.FirstOrDefault(w => w.ParsingName == path);
Add comment 3505 3533 if (sho != null) {
Add comment 3506 Minus   var index = this._ShellListView.ItemsHashed[sho.GetUniqueID()];
Add comment 3507 Minus   this._ShellListView.SelectItemByIndex(index, path.Equals(selectedPaths.Last()) || this.IsNeedEnsureVisible);
Add comment 3534 Plus   var index = sho.ItemIndex;
Add comment 3535 Plus   this._ShellListView.SelectItemByIndex(index, path.Equals(selectedPaths.Last(), StringComparison.InvariantCultureIgnoreCase) || this.IsNeedEnsureVisible);
Add comment 3508 3536 this.IsNeedEnsureVisible = false;
Add comment 3509 3537 selectedPaths.Remove(path);
Add comment 3510 3538 }
Add comment 3658 3686 #region Misc
Add comment 3659 3687
Add comment 3660 3688 public MainWindow() {
Add comment 3689 Plus   this.LVItemsColorCol = new ObservableCollectionEx<LVItemColor>();
Add comment 3690 Plus  
Add comment 3661 3691 this.CommandBindings.AddRange(new[]
Add comment 3662 3692 {
Add comment 3663 3693 new CommandBinding(AppCommands.RoutedNavigateBack, leftNavBut_Click),
Add comment 3774 3804 }
Add comment 3775 3805
Add comment 3776 3806 void ShellListView_ViewStyleChanged(object sender, BExplorer.Shell.ViewChangedEventArgs e) {
Add comment 3777 Minus   zoomSlider.Value = e.ThumbnailSize;
Add comment 3778 Minus   btnAutosizeColls.IsEnabled = e.CurrentView == ShellViewStyle.Details;
Add comment 3779 Minus   btnSbTiles.IsChecked = e.CurrentView == ShellViewStyle.Tile;
Add comment 3807 Plus   //zoomSlider.Value = e.ThumbnailSize;
Add comment 3808 Plus   //btnAutosizeColls.IsEnabled = e.CurrentView == ShellViewStyle.Details;
Add comment 3809 Plus   //btnSbTiles.IsChecked = e.CurrentView == ShellViewStyle.Tile;
Add comment 3780 3810
Add comment 3781 Minus   if (e.CurrentView == ShellViewStyle.ExtraLargeIcon) {
Add comment 3782 Minus   ViewGallery.SelectedIndex = 0;
Add comment 3783 Minus   } else if (e.CurrentView == ShellViewStyle.LargeIcon) {
Add comment 3784 Minus   ViewGallery.SelectedIndex = 1;
Add comment 3785 Minus   } else if (e.CurrentView == ShellViewStyle.Medium) {
Add comment 3786 Minus   ViewGallery.SelectedIndex = 2;
Add comment 3787 Minus   btnSbIcons.IsChecked = true;
Add comment 3788 Minus   } else if (e.CurrentView == ShellViewStyle.SmallIcon) {
Add comment 3789 Minus   ViewGallery.SelectedIndex = 3;
Add comment 3790 Minus   } else {
Add comment 3791 Minus   btnSbIcons.IsChecked = false;
Add comment 3792 Minus   }
Add comment 3811 Plus   //if (e.CurrentView == ShellViewStyle.ExtraLargeIcon) {
Add comment 3812 Plus   // ViewGallery.SelectedIndex = 0;
Add comment 3813 Plus   //} else if (e.CurrentView == ShellViewStyle.LargeIcon) {
Add comment 3814 Plus   // ViewGallery.SelectedIndex = 1;
Add comment 3815 Plus   //} else if (e.CurrentView == ShellViewStyle.Medium) {
Add comment 3816 Plus   // ViewGallery.SelectedIndex = 2;
Add comment 3817 Plus   // btnSbIcons.IsChecked = true;
Add comment 3818 Plus   //} else if (e.CurrentView == ShellViewStyle.SmallIcon) {
Add comment 3819 Plus   // ViewGallery.SelectedIndex = 3;
Add comment 3820 Plus   //} else {
Add comment 3821 Plus   // btnSbIcons.IsChecked = false;
Add comment 3822 Plus   //}
Add comment 3793 3823
Add comment 3794 Minus   if (e.CurrentView == ShellViewStyle.List) {
Add comment 3795 Minus   ViewGallery.SelectedIndex = 4;
Add comment 3796 Minus   } else if (e.CurrentView == ShellViewStyle.Details) {
Add comment 3797 Minus   ViewGallery.SelectedIndex = 5;
Add comment 3798 Minus   btnSbDetails.IsChecked = true;
Add comment 3799 Minus   } else {
Add comment 3800 Minus   btnSbDetails.IsChecked = false;
Add comment 3801 Minus   }
Add comment 3824 Plus   //if (e.CurrentView == ShellViewStyle.List) {
Add comment 3825 Plus   // ViewGallery.SelectedIndex = 4;
Add comment 3826 Plus   //} else if (e.CurrentView == ShellViewStyle.Details) {
Add comment 3827 Plus   // ViewGallery.SelectedIndex = 5;
Add comment 3828 Plus   // btnSbDetails.IsChecked = true;
Add comment 3829 Plus   //} else {
Add comment 3830 Plus   // btnSbDetails.IsChecked = false;
Add comment 3831 Plus   //}
Add comment 3802 3832
Add comment 3803 Minus   if (e.CurrentView == ShellViewStyle.Tile) {
Add comment 3804 Minus   ViewGallery.SelectedIndex = 6;
Add comment 3805 Minus   } else if (e.CurrentView == ShellViewStyle.Content) {
Add comment 3806 Minus   ViewGallery.SelectedIndex = 7;
Add comment 3807 Minus   } else if (e.CurrentView == ShellViewStyle.Thumbstrip) {
Add comment 3808 Minus   ViewGallery.SelectedIndex = 8;
Add comment 3809 Minus   }
Add comment 3833 Plus   //if (e.CurrentView == ShellViewStyle.Tile) {
Add comment 3834 Plus   // ViewGallery.SelectedIndex = 6;
Add comment 3835 Plus   //} else if (e.CurrentView == ShellViewStyle.Content) {
Add comment 3836 Plus   // ViewGallery.SelectedIndex = 7;
Add comment 3837 Plus   //} else if (e.CurrentView == ShellViewStyle.Thumbstrip) {
Add comment 3838 Plus   // ViewGallery.SelectedIndex = 8;
Add comment 3839 Plus   //}
Add comment 3810 3840 }
Add comment 3811 3841
Add comment 3812 3842 private void btnNewItem_DropDownOpened(object sender, EventArgs e) {
Add comment 4119 4149 Utilities.SetRegistryValue("IsTraditionalNameGrouping", e.RoutedEvent.Name == "Checked" ? 1 : 0);
Add comment 4120 4150 this._ShellListView.IsTraditionalNameGrouping = e.RoutedEvent.Name == "Checked";
Add comment 4121 4151 }
Add comment 4152 Plus  
Add comment 4153 Plus   private void GrdItemTextColor_OnRowEditEnding(object sender, DataGridRowEditEndingEventArgs e)
Add comment 4154 Plus   {
Add comment 4155 Plus   //this.save
Add comment 4156 Plus   }
Add comment 4122 4157 }
Add comment 4123 4158 }
Add comment 4124 4159
BreadcrumbBar.cs
/BreadcrumbBar/BreadcrumbBar/BreadcrumbBar.cs-176+87
/BreadcrumbBar/BreadcrumbBar/BreadcrumbBar.cs
Add comment 32 // IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
Add comment 33 // ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
Add comment 34 //###################################################################################
Add comment 35 Minus  namespace Odyssey.Controls
Add comment 36 Minus  {
Add comment 35 Plus  namespace Odyssey.Controls {
Add comment 37 36
Add comment 38 37 /// <summary>
Add comment 39 38 /// A breadcrumb bar the contains breadcrumb items, a dropdown control, additional buttons and a progress bar.
Add comment 41 40 [ContentProperty("Root")]
Add comment 42 41 [TemplatePart(Name = partComboBox)]
Add comment 43 42 [TemplatePart(Name = partRoot)]
Add comment 44 Minus   public class BreadcrumbBar : Control
Add comment 45 Minus   {
Add comment 43 Plus   public class BreadcrumbBar : Control {
Add comment 46 44
Add comment 47 45 #region Constants
Add comment 48 46
Add comment 188 186 private static RoutedUICommand selectRootCommand = new RoutedUICommand("Select", "SelectRootCommand", typeof(BreadcrumbBar));
Add comment 189 187 private static RoutedUICommand selectTraceCommand = new RoutedUICommand("Select", "SelectTraceCommand", typeof(BreadcrumbBar));
Add comment 190 188
Add comment 191 Minus   static BreadcrumbBar()
Add comment 192 Minus   {
Add comment 189 Plus   static BreadcrumbBar() {
Add comment 193 190 DefaultStyleKeyProperty.OverrideMetadata(typeof(BreadcrumbBar), new FrameworkPropertyMetadata(typeof(BreadcrumbBar)));
Add comment 194 191 BorderThicknessProperty.OverrideMetadata(typeof(BreadcrumbBar), new FrameworkPropertyMetadata(new Thickness(1)));
Add comment 195 192 BorderBrushProperty.OverrideMetadata(typeof(BreadcrumbBar), new FrameworkPropertyMetadata(Brushes.Black));
Add comment 285 282 var isLoaded = false;
Add comment 286 283
Add comment 287 284 // Task.Run(() => {
Add comment 288 Minus   if (IsInitialized)
Add comment 289 Minus   {
Add comment 290 Minus   try
Add comment 291 Minus   {
Add comment 292 Minus   Dispatcher.Invoke(DispatcherPriority.Normal, (Action)(() =>
Add comment 293 Minus   {
Add comment 285 Plus   if (IsInitialized) {
Add comment 286 Plus   try {
Add comment 287 Plus   Dispatcher.Invoke(DispatcherPriority.Normal, (Action)(() => {
Add comment 294 288 isLoaded = IsLoaded;
Add comment 295 289 }));
Add comment 296 Minus   }
Add comment 297 Minus   catch (Exception)
Add comment 298 Minus   {
Add comment 290 Plus   } catch (Exception) {
Add comment 299 291 isLoaded = IsLoaded;
Add comment 300 292 }
Add comment 301 Minus   var thread = new Thread(() =>
Add comment 302 Minus   {
Add comment 293 Plus   //var thread = new Thread(() => {
Add comment 303 294 BuildBreadcrumbsFromPath(Path);
Add comment 304 295
Add comment 305 Minus   if (isLoaded && !breadcrumbItemTraceValueChanged_IsFired && _Path != null)
Add comment 306 Minus   {
Add comment 296 Plus   if (isLoaded && !breadcrumbItemTraceValueChanged_IsFired && _Path != null) {
Add comment 307 297 Int64 pidl;
Add comment 308 298 bool isValidPidl = Int64.TryParse(_Path.TrimEnd(Char.Parse(@"\")), out pidl);
Add comment 309 Minus   try
Add comment 310 Minus   {
Add comment 299 Plus   try {
Add comment 311 300 var item = isValidPidl ? FileSystemListItem.ToFileSystemItem(IntPtr.Zero, (IntPtr)pidl) : FileSystemListItem.ToFileSystemItem(IntPtr.Zero, _Path.ToShellParsingName());
Add comment 312 301 if (item != null && this._ShouldNavigate)
Add comment 313 302 OnNavigate(item);
Add comment 314 303 else
Add comment 315 304 this._ShouldNavigate = true;
Add comment 316 Minus   }
Add comment 317 Minus   catch (Exception)
Add comment 318 Minus   {
Add comment 305 Plus   } catch (Exception) {
Add comment 319 306 //FIXME: fix this exception in case of searchfolder!!!!
Add comment 320 307 }
Add comment 321 308 }
Add comment 322 Minus   });
Add comment 323 Minus   thread.Start();
Add comment 309 Plus   //});
Add comment 310 Plus   //thread.SetApartmentState(ApartmentState.STA);
Add comment 311 Plus   //thread.Start();
Add comment 324 312 }
Add comment 325 313 //});
Add comment 326 314 }
Add comment 327 315 }
Add comment 328 316 private Boolean _ShouldNavigate = true;
Add comment 329 Minus   public void SetPathWithoutNavigate(string path)
Add comment 330 Minus   {
Add comment 317 Plus   public void SetPathWithoutNavigate(string path) {
Add comment 331 318 this._ShouldNavigate = false;
Add comment 332 319 this.Path = path;
Add comment 333 320 }
Add comment 415 402 /// Creates a new BreadcrumbBar.
Add comment 416 403 /// </summary>
Add comment 417 404 public BreadcrumbBar()
Add comment 418 Minus   : base()
Add comment 419 Minus   {
Add comment 405 Plus   : base() {
Add comment 420 406 this.SeparatorString = "\\";
Add comment 421 407 this.Root = ((ShellItem)KnownFolders.Desktop);
Add comment 422 408
Add comment 423 Minus   foreach (ShellItem item in ((ShellItem)KnownFolders.Desktop).Where(w => w.IsFolder))
Add comment 424 Minus   {
Add comment 409 Plus   foreach (ShellItem item in ((ShellItem)KnownFolders.Desktop).Where(w => w.IsFolder)) {
Add comment 425 410 this.RootItem.Items.Add(item);
Add comment 426 411 }
Add comment 427 412
Add comment 443 428 InputBindings.Add(new KeyBinding(BreadcrumbBar.ShowDropDownCommand, new KeyGesture(Key.Down, ModifierKeys.Alt)));
Add comment 444 429 }
Add comment 445 430
Add comment 446 Minus   private static void IsDropDownOpenChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
Add comment 447 Minus   {
Add comment 431 Plus   private static void IsDropDownOpenChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) {
Add comment 448 432 BreadcrumbBar bar = d as BreadcrumbBar;
Add comment 449 433 bar.OnDropDownOpenChanged((bool)e.OldValue, (bool)e.NewValue);
Add comment 450 434 }
Add comment 451 435
Add comment 452 Minus   private static void SelectedBreadcrumbPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
Add comment 453 Minus   {
Add comment 436 Plus   private static void SelectedBreadcrumbPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) {
Add comment 454 437 BreadcrumbBar bar = d as BreadcrumbBar;
Add comment 455 438 BreadcrumbItem selected = e.NewValue as BreadcrumbItem;
Add comment 456 439 bar.IsRootSelected = selected == bar.RootItem;
Add comment 457 Minus   if (bar.IsInitialized)
Add comment 458 Minus   {
Add comment 440 Plus   if (bar.IsInitialized) {
Add comment 459 441 var args = new RoutedPropertyChangedEventArgs<BreadcrumbItem>(e.OldValue as BreadcrumbItem, e.NewValue as BreadcrumbItem, BreadcrumbBar.SelectedBreadcrumbChangedEvent);
Add comment 460 442 bar.RaiseEvent(args);
Add comment 461 443 }
Add comment 465 447 /// Traces the specified path and builds the associated BreadcrumbItems.
Add comment 466 448 /// </summary>
Add comment 467 449 /// <param name="newPath">The traces separated by the SepearatorString property.</param>
Add comment 468 Minus   internal void BuildBreadcrumbsFromPath(string newPath)
Add comment 469 Minus   {
Add comment 450 Plus   internal void BuildBreadcrumbsFromPath(string newPath) {
Add comment 470 451 if (newPath != null && newPath.StartsWith("%"))
Add comment 471 452 newPath = Environment.ExpandEnvironmentVariables(newPath);
Add comment 472 453
Add comment 473 454 string newPathToShellParsingName = newPath.ToShellParsingName();
Add comment 474 455 Int64 pidl;
Add comment 475 456 bool isValidPidl = Int64.TryParse(RemoveLastEmptySeparator(newPathToShellParsingName), out pidl);
Add comment 476 Minus   try
Add comment 477 Minus   {
Add comment 457 Plus   try {
Add comment 478 458 ShellItem shellItem = isValidPidl ? new ShellItem((IntPtr)pidl) : new ShellItem(RemoveLastEmptySeparator(newPathToShellParsingName));
Add comment 479 459 if (shellItem == null) return;
Add comment 480 Minus   Dispatcher.BeginInvoke(DispatcherPriority.Normal, (ThreadStart)(() =>
Add comment 481 Minus   {
Add comment 460 Plus   Dispatcher.BeginInvoke(DispatcherPriority.Normal, (ThreadStart)(() => {
Add comment 482 461 BreadcrumbItem item = RootItem;
Add comment 483 462 if (item == null) return;
Add comment 484 463
Add comment 485 464 newPath = RemoveLastEmptySeparator(newPath);
Add comment 486 465
Add comment 487 466 var traces = new List<ShellItem>() { shellItem };
Add comment 488 Minus   while (shellItem != null && shellItem.Parent != null)
Add comment 489 Minus   {
Add comment 467 Plus   while (shellItem != null && shellItem.Parent != null) {
Add comment 490 468 traces.Add(shellItem.Parent);
Add comment 491 469 shellItem = shellItem.Parent;
Add comment 492 470 }
Add comment 499 477 int length = traces.Count;
Add comment 500 478 int max = breadcrumbsToHide;
Add comment 501 479 // if the root is specified as first trace, then skip:
Add comment 502 Minus   if (max > 0 && traces[index].GetHashCode() == (shellItem.GetHashCode()))
Add comment 503 Minus   {
Add comment 480 Plus   if (max > 0 && traces[index].GetHashCode() == (shellItem.GetHashCode())) {
Add comment 504 481 length--;
Add comment 505 482 index++;
Add comment 506 483 max--;
Add comment 507 484 }
Add comment 508 485
Add comment 509 Minus   for (int i = index; i < traces.Count; i++)
Add comment 510 Minus   {
Add comment 486 Plus   for (int i = index; i < traces.Count; i++) {
Add comment 511 487 //Why do we have [if (item == null) break;] It seems like we add an if to the For(...) or it should NEVER be null
Add comment 512 488 if (item == null) break;
Add comment 513 489 var trace = traces[i];
Add comment 514 490 ////OnPopulateItems(item);
Add comment 515 491 //pop_items(item);
Add comment 516 492 object next = item.GetTraceItem(trace);
Add comment 517 Minus   if (next == null && item.Data.GetHashCode() == trace.Parent.GetHashCode())
Add comment 518 Minus   {
Add comment 493 Plus   if (next == null && item.Data.GetHashCode() == trace.Parent.GetHashCode()) {
Add comment 519 494 //missingItem = item;
Add comment 520 495 //lItem = trace;
Add comment 521 496 item.Items.Add(trace);
Add comment 528 503 item = container;
Add comment 529 504 }
Add comment 530 505
Add comment 531 Minus   if (length != itemIndex.Count)
Add comment 532 Minus   {
Add comment 506 Plus   if (length != itemIndex.Count) {
Add comment 533 507 //recover the last path:
Add comment 534 508 Path = GetDisplayPath();
Add comment 535 509 return;
Add comment 538 512 // temporarily remove the SelectionChangedEvent handler to minimize processing of events while building the breadcrumb items:
Add comment 539 513 RemoveHandler(BreadcrumbItem.SelectionChangedEvent, new RoutedEventHandler(breadcrumbItemSelectedItemChanged));
Add comment 540 514
Add comment 541 Minus   try
Add comment 542 Minus   {
Add comment 515 Plus   try {
Add comment 543 516 var item2 = RootItem;
Add comment 544 Minus   foreach (var key in itemIndex)
Add comment 545 Minus   {
Add comment 517 Plus   foreach (var key in itemIndex) {
Add comment 546 518 if (item == null) break;
Add comment 547 Minus   if (item2.Items.OfType<ShellItem>().Count() == 1)
Add comment 548 Minus   {
Add comment 519 Plus   if (item2.Items.OfType<ShellItem>().Count() == 1) {
Add comment 549 520 var firstItem = item2.Items.OfType<ShellItem>().First();
Add comment 550 Minus   if (firstItem.GetHashCode() != key.Item2.GetHashCode())
Add comment 551 Minus   {
Add comment 521 Plus   if (firstItem.GetHashCode() != key.Item2.GetHashCode()) {
Add comment 552 522 item2.Items.Clear();
Add comment 553 523 item2.Items.Add(key.Item2);
Add comment 554 524 }
Add comment 555 Minus   }
Add comment 556 Minus   else if (item2.Items.OfType<ShellItem>().Count() == 0)
Add comment 557 Minus   {
Add comment 525 Plus   } else if (item2.Items.OfType<ShellItem>().Count() == 0) {
Add comment 558 526 item2.Items.Add(key.Item2);
Add comment 559 527 }
Add comment 560 528
Add comment 564 532 if (item2 != null) item2.SelectedItem = null;
Add comment 565 533 SelectedBreadcrumb = item2;
Add comment 566 534 SelectedItem = item2 != null ? item2.Data : null;
Add comment 567 Minus   }
Add comment 568 Minus   finally
Add comment 569 Minus   {
Add comment 535 Plus   } finally {
Add comment 570 536 AddHandler(BreadcrumbItem.SelectionChangedEvent, new RoutedEventHandler(breadcrumbItemSelectedItemChanged));
Add comment 571 537 }
Add comment 572 538 }));
Add comment 573 Minus   }
Add comment 574 Minus   catch (FileNotFoundException ex)
Add comment 575 Minus   {
Add comment 539 Plus   } catch (FileNotFoundException ex) {
Add comment 576 540 MessageBox.Show(ex.Message, "Error", MessageBoxButton.OK, MessageBoxImage.Error);
Add comment 577 541 }
Add comment 578 542 }
Add comment 582 546 /// </summary>
Add comment 583 547 /// <param name="path">The path from which to remove the last separator.</param>
Add comment 584 548 /// <returns>The path without an unnecessary last separator.</returns>
Add comment 585 Minus   private string RemoveLastEmptySeparator(string path)
Add comment 586 Minus   {
Add comment 549 Plus   private string RemoveLastEmptySeparator(string path) {
Add comment 587 550 if (path.Contains(":") && !(path.StartsWith("shell::") || path.StartsWith("::"))) return path;
Add comment 588 551
Add comment 589 552 path = path.Trim();
Add comment 598 561 /// </summary>
Add comment 599 562 /// <param name="oldValue"></param>
Add comment 600 563 /// <param name="newValue"></param>
Add comment 601 Minus   protected virtual void OnDropDownOpenChanged(bool oldValue, bool newValue)
Add comment 602 Minus   {
Add comment 603 Minus   if (comboBox != null && newValue)
Add comment 604 Minus   {
Add comment 564 Plus   protected virtual void OnDropDownOpenChanged(bool oldValue, bool newValue) {
Add comment 565 Plus   if (comboBox != null && newValue) {
Add comment 605 566 SetInputState();
Add comment 606 567 comboBox.Visibility = Visibility.Visible;
Add comment 607 568 comboBox.IsDropDownOpen = true;
Add comment 608 569 }
Add comment 609 570 }
Add comment 610 571
Add comment 611 Minus   private static void SelectRootCommandExecuted(object sender, ExecutedRoutedEventArgs e)
Add comment 612 Minus   {
Add comment 572 Plus   private static void SelectRootCommandExecuted(object sender, ExecutedRoutedEventArgs e) {
Add comment 613 573 var item = e.Parameter as BreadcrumbItem;
Add comment 614 574 if (item != null)
Add comment 615 575 item.SelectedItem = null;
Add comment 616 576 }
Add comment 617 577
Add comment 618 Minus   private static void SelectTraceCommandExecuted(object sender, ExecutedRoutedEventArgs e)
Add comment 619 Minus   {
Add comment 578 Plus   private static void SelectTraceCommandExecuted(object sender, ExecutedRoutedEventArgs e) {
Add comment 620 579 var item = e.Parameter as BreadcrumbItem;
Add comment 621 580 if (item != null)
Add comment 622 581 item.SelectedItem = null;
Add comment 623 582 }
Add comment 624 583
Add comment 625 Minus   private static void ShowDropDownExecuted(object sender, ExecutedRoutedEventArgs e)
Add comment 626 Minus   {
Add comment 584 Plus   private static void ShowDropDownExecuted(object sender, ExecutedRoutedEventArgs e) {
Add comment 627 585 BreadcrumbBar bar = sender as BreadcrumbBar;
Add comment 628 586 if (bar.DropDownItems.Count > 0) bar.IsDropDownOpen = true;
Add comment 629 587 }
Add comment 630 588
Add comment 631 Minus   private void breadcrumbItemSelectedItemChanged(object sender, RoutedEventArgs e)
Add comment 632 Minus   {
Add comment 589 Plus   private void breadcrumbItemSelectedItemChanged(object sender, RoutedEventArgs e) {
Add comment 633 590 var breadcrumb = e.OriginalSource as BreadcrumbItem;
Add comment 634 591 if (breadcrumb != null && breadcrumb.SelectedBreadcrumb != null) breadcrumb = breadcrumb.SelectedBreadcrumb;
Add comment 635 592 SelectedBreadcrumb = breadcrumb;
Add comment 640 597 Path = GetDisplayPath();
Add comment 641 598 }
Add comment 642 599
Add comment 643 Minus   private void breadcrumbItemTraceValueChanged(object sender, RoutedEventArgs e)
Add comment 644 Minus   {
Add comment 645 Minus   if (e.OriginalSource == RootItem)
Add comment 646 Minus   {
Add comment 600 Plus   private void breadcrumbItemTraceValueChanged(object sender, RoutedEventArgs e) {
Add comment 601 Plus   if (e.OriginalSource == RootItem) {
Add comment 647 602 breadcrumbItemTraceValueChanged_IsFired = true;
Add comment 648 603 Path = GetDisplayPath();
Add comment 649 604 breadcrumbItemTraceValueChanged_IsFired = false;
Add comment 650 605 }
Add comment 651 606 }
Add comment 652 607
Add comment 653 Minus   private void breadcrumbItemSelectionChangedEvent(object sender, RoutedEventArgs e)
Add comment 654 Minus   {
Add comment 608 Plus   private void breadcrumbItemSelectionChangedEvent(object sender, RoutedEventArgs e) {
Add comment 655 609 var parent = e.Source as BreadcrumbItem;
Add comment 656 Minus   if (parent != null && parent.SelectedBreadcrumb != null)
Add comment 657 Minus   {
Add comment 658 Minus   if (parent.SelectedBreadcrumb.Items.Count == 0)
Add comment 659 Minus   {
Add comment 660 Minus   if (parent.SelectedBreadcrumb.TraceValue.Equals(((ShellItem)KnownFolders.Computer).DisplayName))
Add comment 661 Minus   {
Add comment 662 Minus   foreach (ShellItem s in KnownFolders.Computer)
Add comment 663 Minus   {
Add comment 610 Plus   if (parent != null && parent.SelectedBreadcrumb != null) {
Add comment 611 Plus   if (parent.SelectedBreadcrumb.Items.Count == 0) {
Add comment 612 Plus   if (parent.SelectedBreadcrumb.TraceValue.Equals(((ShellItem)KnownFolders.Computer).DisplayName)) {
Add comment 613 Plus   foreach (ShellItem s in KnownFolders.Computer) {
Add comment 664 614 if (s.IsValidShellFolder)
Add comment 665 615 parent.SelectedBreadcrumb.Items.Add(s);
Add comment 666 616 }
Add comment 669 619 }
Add comment 670 620 }
Add comment 671 621
Add comment 672 Minus   private void breadcrumbItemDropDownChangedEvent(object sender, RoutedEventArgs e)
Add comment 673 Minus   {
Add comment 622 Plus   private void breadcrumbItemDropDownChangedEvent(object sender, RoutedEventArgs e) {
Add comment 674 623 BreadcrumbItem breadcrumb = e.Source as BreadcrumbItem;
Add comment 675 624 if (breadcrumb.IsDropDownPressed)
Add comment 676 625 OnBreadcrumbItemDropDownOpened(e);
Add comment 699 648 /// <summary>
Add comment 700 649 /// Occurs when the dropdown of a BreadcrumbItem is opened.
Add comment 701 650 /// </summary>
Add comment 702 Minus   protected virtual void OnBreadcrumbItemDropDownOpened(RoutedEventArgs e)
Add comment 703 Minus   {
Add comment 651 Plus   protected virtual void OnBreadcrumbItemDropDownOpened(RoutedEventArgs e) {
Add comment 704 652 BreadcrumbItemEventArgs args = new BreadcrumbItemEventArgs(e.Source as BreadcrumbItem, BreadcrumbItemDropDownOpenedEvent);
Add comment 705 653 RaiseEvent(args);
Add comment 706 654 }
Add comment 708 656 /// <summary>
Add comment 709 657 /// Occurs when the dropdown of a BreadcrumbItem is closed.
Add comment 710 658 /// </summary>
Add comment 711 Minus   protected virtual void OnBreadcrumbItemDropDownClosed(RoutedEventArgs e)
Add comment 712 Minus   {
Add comment 659 Plus   protected virtual void OnBreadcrumbItemDropDownClosed(RoutedEventArgs e) {
Add comment 713 660 BreadcrumbItemEventArgs args = new BreadcrumbItemEventArgs(e.Source as BreadcrumbItem, BreadcrumbItemDropDownClosedEvent);
Add comment 714 661 RaiseEvent(args);
Add comment 715 662 }
Add comment 716 663
Add comment 717 Minus   protected override Size ArrangeOverride(Size arrangeBounds)
Add comment 718 Minus   {
Add comment 664 Plus   protected override Size ArrangeOverride(Size arrangeBounds) {
Add comment 719 665 Size size = base.ArrangeOverride(arrangeBounds);
Add comment 720 666 bool isOverflow = (RootItem != null && RootItem.SelectedBreadcrumb != null && RootItem.SelectedBreadcrumb.IsOverflow);
Add comment 721 667 OverflowMode = isOverflow ? BreadcrumbButton.ButtonMode.Overflow : BreadcrumbButton.ButtonMode.Breadcrumb;
Add comment 722 668 return size;
Add comment 723 669 }
Add comment 724 670
Add comment 725 Minus   private object GetImage(ImageSource imageSource)
Add comment 726 Minus   {
Add comment 671 Plus   private object GetImage(ImageSource imageSource) {
Add comment 727 672 if (imageSource == null) return null;
Add comment 728 673 Image image = new Image();
Add comment 729 674 image.Source = imageSource;
Add comment 734 679 return image;
Add comment 735 680 }
Add comment 736 681
Add comment 737 Minus   private void menuItem_Click(object sender, RoutedEventArgs e)
Add comment 738 Minus   {
Add comment 682 Plus   private void menuItem_Click(object sender, RoutedEventArgs e) {
Add comment 739 683 MenuItem item = e.Source as MenuItem;
Add comment 740 Minus   if (RootItem != null && item != null)
Add comment 741 Minus   {
Add comment 684 Plus   if (RootItem != null && item != null) {
Add comment 742 685 object dataItem = item.Tag;
Add comment 743 686 if (dataItem != null && dataItem.Equals(RootItem.SelectedItem)) RootItem.SelectedItem = null;
Add comment 744 687 RootItem.SelectedItem = dataItem;
Add comment 763 706 set { SetValue(OverflowItemTemplateProperty, value); }
Add comment 764 707 }
Add comment 765 708
Add comment 766 Minus   private static void RootPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
Add comment 767 Minus   {
Add comment 709 Plus   private static void RootPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) {
Add comment 768 710 BreadcrumbBar bar = d as BreadcrumbBar;
Add comment 769 711 bar.OnRootChanged(e.OldValue, e.NewValue);
Add comment 770 712 }
Add comment 774 716 /// </summary>
Add comment 775 717 /// <param name="oldValue"></param>
Add comment 776 718 /// <param name="newValue"></param>
Add comment 777 Minus   public virtual void OnRootChanged(object oldValue, object newValue)
Add comment 778 Minus   {
Add comment 719 Plus   public virtual void OnRootChanged(object oldValue, object newValue) {
Add comment 779 720 //newValue = GetFirstItem(newValue);
Add comment 780 721 //if (oldRoot != null) {
Add comment 781 Minus   if (oldValue is BreadcrumbItem)
Add comment 782 Minus   {
Add comment 722 Plus   if (oldValue is BreadcrumbItem) {
Add comment 783 723 ((BreadcrumbItem)oldValue).IsRoot = false;
Add comment 784 724 }
Add comment 785 725
Add comment 786 Minus   if (newValue == null)
Add comment 787 Minus   {
Add comment 726 Plus   if (newValue == null) {
Add comment 788 727 RootItem = null;
Add comment 789 728 Path = null;
Add comment 790 Minus   }
Add comment 791 Minus   else
Add comment 792 Minus   {
Add comment 729 Plus   } else {
Add comment 793 730 var root = newValue as BreadcrumbItem;
Add comment 794 731
Add comment 795 732 /*
Add comment 823 760 private set { SetValue(IsOverflowPressedProperty, value); }
Add comment 824 761 }
Add comment 825 762
Add comment 826 Minus   private static void OverflowPressedChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
Add comment 827 Minus   {
Add comment 763 Plus   private static void OverflowPressedChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) {
Add comment 828 764 BreadcrumbBar bar = d as BreadcrumbBar;
Add comment 829 765 bar.OnOverflowPressedChanged();
Add comment 830 766 }
Add comment 832 768 /// <summary>
Add comment 833 769 /// Occurs when the IsOverflowPressed property is changed.
Add comment 834 770 /// </summary>
Add comment 835 Minus   protected virtual void OnOverflowPressedChanged()
Add comment 836 Minus   {
Add comment 771 Plus   protected virtual void OnOverflowPressedChanged() {
Add comment 837 772 // rebuild the list of traces to show in the pop-up of the overflow button:
Add comment 838 773 if (!IsOverflowPressed) return;
Add comment 839 774
Add comment 840 775 BreadcrumbItem item = RootItem;
Add comment 841 776
Add comment 842 777 traces.Clear();
Add comment 843 Minus   if (item != null && item.IsOverflow)
Add comment 844 Minus   {
Add comment 845 Minus   foreach (object trace in item.Items)
Add comment 846 Minus   {
Add comment 778 Plus   if (item != null && item.IsOverflow) {
Add comment 779 Plus   foreach (object trace in item.Items) {
Add comment 847 780 MenuItem menuItem = new MenuItem();
Add comment 848 781 menuItem.Tag = trace;
Add comment 849 782 BreadcrumbItem bcItem = item.ContainerFromItem(trace);
Add comment 864 797
Add comment 865 798 item = item != null ? item.SelectedBreadcrumb : null;
Add comment 866 799
Add comment 867 Minus   while (item != null)
Add comment 868 Minus   {
Add comment 800 Plus   while (item != null) {
Add comment 869 801 if (!item.IsOverflow) break;
Add comment 870 802 MenuItem traceMenuItem = new MenuItem();
Add comment 871 803 traceMenuItem.Header = item.TraceValue;
Add comment 904 836 private set { SetValue(OverflowModePropertyKey, value); }
Add comment 905 837 }
Add comment 906 838
Add comment 907 Minus   public override void OnApplyTemplate()
Add comment 908 Minus   {
Add comment 839 Plus   public override void OnApplyTemplate() {
Add comment 909 840 base.OnApplyTemplate();
Add comment 910 841 comboBox = GetTemplateChild(partComboBox) as ComboBox;
Add comment 911 842 rootButton = GetTemplateChild(partRoot) as BreadcrumbButton;
Add comment 912 Minus   if (comboBox != null)
Add comment 913 Minus   {
Add comment 843 Plus   if (comboBox != null) {
Add comment 914 844 comboBox.StaysOpenOnEdit = true;
Add comment 915 845 comboBox.DropDownClosed += new EventHandler(comboBox_DropDownClosed);
Add comment 916 846 comboBox.KeyDown += new KeyEventHandler(comboBox_KeyDown);
Add comment 920 850 if (rootButton != null) rootButton.Click += new RoutedEventHandler(rootButton_Click);
Add comment 921 851 }
Add comment 922 852
Add comment 923 Minus   private void comboBox_Loaded(object sender, RoutedEventArgs e)
Add comment 924 Minus   {
AlphaSelector.cs
/ColorBox/Implementation/AlphaSelector.cs-1+1
/ColorBox/Implementation/AlphaSelector.cs
Add comment 9 <ErrorReportUrlHistory />
Add comment 10 <FallbackCulture>en-US</FallbackCulture>
Add comment 11 <VerifyUploadedFiles>false</VerifyUploadedFiles>
Add comment 12 Minus   <ProjectView>ProjectFiles</ProjectView>
Add comment 12 Plus   <ProjectView>ShowAllFiles</ProjectView>
Add comment 13 </PropertyGroup>
Add comment 14 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
Add comment 15 <EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
BaseSelector.cs
/ColorBox/Implementation/BaseSelector.cs
/ColorBox/Implementation/BaseSelector.cs
BrushTypes.cs
/ColorBox/Implementation/BrushTypes.cs
/ColorBox/Implementation/BrushTypes.cs
ColorBox.cs
/ColorBox/Implementation/ColorBox.cs
/ColorBox/Implementation/ColorBox.cs
ColorChangedEventArgs.cs
/ColorBox/Implementation/ColorChangedEventArgs.cs
/ColorBox/Implementation/ColorChangedEventArgs.cs
DoubleUpDown.cs
/ColorBox/Implementation/DoubleUpDown.cs
/ColorBox/Implementation/DoubleUpDown.cs
Enums.cs
/ColorBox/Implementation/Enums.cs
/ColorBox/Implementation/Enums.cs
GradientStopAdder.cs
/ColorBox/Implementation/GradientStopAdder.cs
/ColorBox/Implementation/GradientStopAdder.cs
GradientStopSlider.cs
/ColorBox/Implementation/GradientStopSlider.cs
/ColorBox/Implementation/GradientStopSlider.cs
HueSelector.cs
/ColorBox/Implementation/HueSelector.cs
/ColorBox/Implementation/HueSelector.cs
SaturationBrightnessSelector.cs
/ColorBox/Implementation/SaturationBrightnessSelector.cs
/ColorBox/Implementation/SaturationBrightnessSelector.cs
SpinEventArgs .cs
/ColorBox/Implementation/SpinEventArgs .cs
/ColorBox/Implementation/SpinEventArgs .cs
Spinner.cs
/ColorBox/Implementation/Spinner.cs
/ColorBox/Implementation/Spinner.cs
UpDownBase.cs
/ColorBox/Implementation/UpDownBase.cs
/ColorBox/Implementation/UpDownBase.cs
AssemblyInfo.cs
/ColorBox/Properties/AssemblyInfo.cs
/ColorBox/Properties/AssemblyInfo.cs
Generic.xaml
/ColorBox/Themes/Generic.xaml
/ColorBox/Themes/Generic.xaml
ColorHelper.cs
/ColorBox/Utils/ColorHelper.cs
/ColorBox/Utils/ColorHelper.cs
InputValidationErrorEventArgs .cs
/ColorBox/Utils/InputValidationErrorEventArgs .cs
/ColorBox/Utils/InputValidationErrorEventArgs .cs
TextBoxBehavior.cs
/ColorBox/Utils/TextBoxBehavior.cs
/ColorBox/Utils/TextBoxBehavior.cs
ColorBox.csproj
/ColorBox/ColorBox.csproj
/ColorBox/ColorBox.csproj
ColorBox.snk
/ColorBox/ColorBox.snk
/ColorBox/ColorBox.snk
AssemblyInfo.cs
/DBUpdater/Properties/AssemblyInfo.cs
/DBUpdater/Properties/AssemblyInfo.cs
Resources.Designer.cs
/DBUpdater/Properties/Resources.Designer.cs
/DBUpdater/Properties/Resources.Designer.cs
Resources.resx
/DBUpdater/Properties/Resources.resx
/DBUpdater/Properties/Resources.resx
Settings.Designer.cs
/DBUpdater/Properties/Settings.Designer.cs
/DBUpdater/Properties/Settings.Designer.cs
Settings.settings
/DBUpdater/Properties/Settings.settings
/DBUpdater/Properties/Settings.settings
App.config
/DBUpdater/App.config
/DBUpdater/App.config
DBUpdater.csproj
/DBUpdater/DBUpdater.csproj
/DBUpdater/DBUpdater.csproj
Program.cs
/DBUpdater/Program.cs
/DBUpdater/Program.cs
FileSystemListItem.cs
/Shell/_Plugin Interfaces/FileSystemListItem.cs
/Shell/_Plugin Interfaces/FileSystemListItem.cs
IListItemEx.cs
/Shell/_Plugin Interfaces/IListItemEx.cs
/Shell/_Plugin Interfaces/IListItemEx.cs
Constants.cs
/Shell/Interop/Constants.cs
/Shell/Interop/Constants.cs
IEnumIDList.cs
/Shell/Interop/IEnumIDList.cs
/Shell/Interop/IEnumIDList.cs
Shell32.cs
/Shell/Interop/Shell32.cs
/Shell/Interop/Shell32.cs
User32.cs
/Shell/Interop/User32.cs
/Shell/Interop/User32.cs
Annotations.cs
/Shell/Properties/Annotations.cs
/Shell/Properties/Annotations.cs
VirtualGrouping.cs
/Shell/VirtualGroups/VirtualGrouping.cs
/Shell/VirtualGroups/VirtualGrouping.cs
Defaults.cs
/Shell/Defaults.cs
/Shell/Defaults.cs
Extensions.cs
/Shell/Extensions.cs
/Shell/Extensions.cs
ListViewEditor.cs
/Shell/ListViewEditor.cs
/Shell/ListViewEditor.cs
LVItemColor.cs
/Shell/LVItemColor.cs
/Shell/LVItemColor.cs
ObservableCollectionEx.cs
/Shell/ObservableCollectionEx.cs
/Shell/ObservableCollectionEx.cs
Shell.csproj
/Shell/Shell.csproj
/Shell/Shell.csproj
ShellItem.cs
/Shell/ShellItem.cs
/Shell/ShellItem.cs
ShellViewEx.cs
/Shell/ShellViewEx.cs
/Shell/ShellViewEx.cs
ShellViewEx.Designer.cs
/Shell/ShellViewEx.Designer.cs
/Shell/ShellViewEx.Designer.cs
ThreadSafeListWithLock.cs
/Shell/ThreadSafeListWithLock.cs
/Shell/ThreadSafeListWithLock.cs
TabControl.cs
/TabControl/TabControl.cs
/TabControl/TabControl.cs
ListviewColumnDropDown.cs
/WpfControlLibrary1/ListviewColumnDropDown.cs
/WpfControlLibrary1/ListviewColumnDropDown.cs
AutoSelectBehaviorEnum.cs
/Xceed.Wpf.Toolkit/AutoSelectTextBox/Implementation/AutoSelectBehaviorEnum.cs
/Xceed.Wpf.Toolkit/AutoSelectTextBox/Implementation/AutoSelectBehaviorEnum.cs
AutoSelectTextBox.cs
/Xceed.Wpf.Toolkit/AutoSelectTextBox/Implementation/AutoSelectTextBox.cs
/Xceed.Wpf.Toolkit/AutoSelectTextBox/Implementation/AutoSelectTextBox.cs
QueryMoveFocusEventArgs.cs
/Xceed.Wpf.Toolkit/AutoSelectTextBox/Implementation/QueryMoveFocusEventArgs.cs
/Xceed.Wpf.Toolkit/AutoSelectTextBox/Implementation/QueryMoveFocusEventArgs.cs
BusyIndicator.cs
/Xceed.Wpf.Toolkit/BusyIndicator/Implementation/BusyIndicator.cs
/Xceed.Wpf.Toolkit/BusyIndicator/Implementation/BusyIndicator.cs
VisualStates.BusyIndicator.cs
/Xceed.Wpf.Toolkit/BusyIndicator/Implementation/VisualStates.BusyIndicator.cs
/Xceed.Wpf.Toolkit/BusyIndicator/Implementation/VisualStates.BusyIndicator.cs
Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/BusyIndicator/Themes/Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/BusyIndicator/Themes/Aero2.NormalColor.xaml
Generic.xaml
/Xceed.Wpf.Toolkit/BusyIndicator/Themes/Generic.xaml
/Xceed.Wpf.Toolkit/BusyIndicator/Themes/Generic.xaml
ButtonSpinner.cs
/Xceed.Wpf.Toolkit/ButtonSpinner/Implementation/ButtonSpinner.cs
/Xceed.Wpf.Toolkit/ButtonSpinner/Implementation/ButtonSpinner.cs
SpinDirection.cs
/Xceed.Wpf.Toolkit/ButtonSpinner/Implementation/SpinDirection.cs
/Xceed.Wpf.Toolkit/ButtonSpinner/Implementation/SpinDirection.cs
SpinEventArgs.cs
/Xceed.Wpf.Toolkit/ButtonSpinner/Implementation/SpinEventArgs.cs
/Xceed.Wpf.Toolkit/ButtonSpinner/Implementation/SpinEventArgs.cs
Spinner.cs
/Xceed.Wpf.Toolkit/ButtonSpinner/Implementation/Spinner.cs
/Xceed.Wpf.Toolkit/ButtonSpinner/Implementation/Spinner.cs
ValidSpinDirections.cs
/Xceed.Wpf.Toolkit/ButtonSpinner/Implementation/ValidSpinDirections.cs
/Xceed.Wpf.Toolkit/ButtonSpinner/Implementation/ValidSpinDirections.cs
Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/ButtonSpinner/Themes/Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/ButtonSpinner/Themes/Aero2.NormalColor.xaml
Generic.xaml
/Xceed.Wpf.Toolkit/ButtonSpinner/Themes/Generic.xaml
/Xceed.Wpf.Toolkit/ButtonSpinner/Themes/Generic.xaml
Calculator.cs
/Xceed.Wpf.Toolkit/Calculator/Implementation/Calculator.cs
/Xceed.Wpf.Toolkit/Calculator/Implementation/Calculator.cs
CalculatorCommands.cs
/Xceed.Wpf.Toolkit/Calculator/Implementation/CalculatorCommands.cs
/Xceed.Wpf.Toolkit/Calculator/Implementation/CalculatorCommands.cs
Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/Calculator/Themes/Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/Calculator/Themes/Aero2.NormalColor.xaml
Generic.xaml
/Xceed.Wpf.Toolkit/Calculator/Themes/Generic.xaml
/Xceed.Wpf.Toolkit/Calculator/Themes/Generic.xaml
CalculatorUpDown.cs
/Xceed.Wpf.Toolkit/CalculatorUpDown/Implementation/CalculatorUpDown.cs
/Xceed.Wpf.Toolkit/CalculatorUpDown/Implementation/CalculatorUpDown.cs
Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/CalculatorUpDown/Themes/Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/CalculatorUpDown/Themes/Aero2.NormalColor.xaml
Generic.xaml
/Xceed.Wpf.Toolkit/CalculatorUpDown/Themes/Generic.xaml
/Xceed.Wpf.Toolkit/CalculatorUpDown/Themes/Generic.xaml
CheckComboBox.cs
/Xceed.Wpf.Toolkit/CheckComboBox/Implementation/CheckComboBox.cs
/Xceed.Wpf.Toolkit/CheckComboBox/Implementation/CheckComboBox.cs
Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/CheckComboBox/Themes/Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/CheckComboBox/Themes/Aero2.NormalColor.xaml
Generic.xaml
/Xceed.Wpf.Toolkit/CheckComboBox/Themes/Generic.xaml
/Xceed.Wpf.Toolkit/CheckComboBox/Themes/Generic.xaml
CheckListBox.cs
/Xceed.Wpf.Toolkit/CheckListBox/Implementation/CheckListBox.cs
/Xceed.Wpf.Toolkit/CheckListBox/Implementation/CheckListBox.cs
Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/CheckListBox/Themes/Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/CheckListBox/Themes/Aero2.NormalColor.xaml
Generic.xaml
/Xceed.Wpf.Toolkit/CheckListBox/Themes/Generic.xaml
/Xceed.Wpf.Toolkit/CheckListBox/Themes/Generic.xaml
ChildWindow.cs
/Xceed.Wpf.Toolkit/ChildWindow/Implementation/ChildWindow.cs
/Xceed.Wpf.Toolkit/ChildWindow/Implementation/ChildWindow.cs
WindowStartupLocation.cs
/Xceed.Wpf.Toolkit/ChildWindow/Implementation/WindowStartupLocation.cs
/Xceed.Wpf.Toolkit/ChildWindow/Implementation/WindowStartupLocation.cs
WindowState.cs
/Xceed.Wpf.Toolkit/ChildWindow/Implementation/WindowState.cs
/Xceed.Wpf.Toolkit/ChildWindow/Implementation/WindowState.cs
Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/ChildWindow/Themes/Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/ChildWindow/Themes/Aero2.NormalColor.xaml
Generic.xaml
/Xceed.Wpf.Toolkit/ChildWindow/Themes/Generic.xaml
/Xceed.Wpf.Toolkit/ChildWindow/Themes/Generic.xaml
ButtonChrome.cs
/Xceed.Wpf.Toolkit/Chromes/Implementation/ButtonChrome.cs
/Xceed.Wpf.Toolkit/Chromes/Implementation/ButtonChrome.cs
Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/Chromes/Themes/Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/Chromes/Themes/Aero2.NormalColor.xaml
Generic.xaml
/Xceed.Wpf.Toolkit/Chromes/Themes/Generic.xaml
/Xceed.Wpf.Toolkit/Chromes/Themes/Generic.xaml
Delete16.png
/Xceed.Wpf.Toolkit/CollectionControl/Images/Delete16.png
/Xceed.Wpf.Toolkit/CollectionControl/Images/Delete16.png
NewItemTypesComboBoxConverter.cs
/Xceed.Wpf.Toolkit/CollectionControl/Implementation/Converters/NewItemTypesComboBoxConverter.cs
/Xceed.Wpf.Toolkit/CollectionControl/Implementation/Converters/NewItemTypesComboBoxConverter.cs
CollectionControl.cs
/Xceed.Wpf.Toolkit/CollectionControl/Implementation/CollectionControl.cs
/Xceed.Wpf.Toolkit/CollectionControl/Implementation/CollectionControl.cs
CollectionControlButton.cs
/Xceed.Wpf.Toolkit/CollectionControl/Implementation/CollectionControlButton.cs
/Xceed.Wpf.Toolkit/CollectionControl/Implementation/CollectionControlButton.cs
CollectionControlDialog.xaml
/Xceed.Wpf.Toolkit/CollectionControl/Implementation/CollectionControlDialog.xaml
/Xceed.Wpf.Toolkit/CollectionControl/Implementation/CollectionControlDialog.xaml
CollectionControlDialog.xaml.cs
/Xceed.Wpf.Toolkit/CollectionControl/Implementation/CollectionControlDialog.xaml.cs
/Xceed.Wpf.Toolkit/CollectionControl/Implementation/CollectionControlDialog.xaml.cs
ItemAddingEventArgs.cs
/Xceed.Wpf.Toolkit/CollectionControl/Implementation/ItemAddingEventArgs.cs
/Xceed.Wpf.Toolkit/CollectionControl/Implementation/ItemAddingEventArgs.cs
ItemDeletingEventArgs.cs
/Xceed.Wpf.Toolkit/CollectionControl/Implementation/ItemDeletingEventArgs.cs
/Xceed.Wpf.Toolkit/CollectionControl/Implementation/ItemDeletingEventArgs.cs
ItemEventArgs.cs
/Xceed.Wpf.Toolkit/CollectionControl/Implementation/ItemEventArgs.cs
/Xceed.Wpf.Toolkit/CollectionControl/Implementation/ItemEventArgs.cs
PrimitiveTypeCollectionControl.cs
/Xceed.Wpf.Toolkit/CollectionControl/Implementation/PrimitiveTypeCollectionControl.cs
/Xceed.Wpf.Toolkit/CollectionControl/Implementation/PrimitiveTypeCollectionControl.cs
Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/CollectionControl/Themes/Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/CollectionControl/Themes/Aero2.NormalColor.xaml
Generic.xaml
/Xceed.Wpf.Toolkit/CollectionControl/Themes/Generic.xaml
/Xceed.Wpf.Toolkit/CollectionControl/Themes/Generic.xaml
ColorCanvas.cs
/Xceed.Wpf.Toolkit/ColorCanvas/Implementation/ColorCanvas.cs
/Xceed.Wpf.Toolkit/ColorCanvas/Implementation/ColorCanvas.cs
ColorSpectrumSlider.cs
/Xceed.Wpf.Toolkit/ColorCanvas/Implementation/ColorSpectrumSlider.cs
/Xceed.Wpf.Toolkit/ColorCanvas/Implementation/ColorSpectrumSlider.cs
Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/ColorCanvas/Themes/Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/ColorCanvas/Themes/Aero2.NormalColor.xaml
Generic.xaml
/Xceed.Wpf.Toolkit/ColorCanvas/Themes/Generic.xaml
/Xceed.Wpf.Toolkit/ColorCanvas/Themes/Generic.xaml
ColorItem.cs
/Xceed.Wpf.Toolkit/ColorPicker/Implementation/ColorItem.cs
/Xceed.Wpf.Toolkit/ColorPicker/Implementation/ColorItem.cs
ColorPicker.cs
/Xceed.Wpf.Toolkit/ColorPicker/Implementation/ColorPicker.cs
/Xceed.Wpf.Toolkit/ColorPicker/Implementation/ColorPicker.cs
ColorSorter.cs
/Xceed.Wpf.Toolkit/ColorPicker/Implementation/ColorSorter.cs
/Xceed.Wpf.Toolkit/ColorPicker/Implementation/ColorSorter.cs
Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/ColorPicker/Themes/Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/ColorPicker/Themes/Aero2.NormalColor.xaml
Generic.xaml
/Xceed.Wpf.Toolkit/ColorPicker/Themes/Generic.xaml
/Xceed.Wpf.Toolkit/ColorPicker/Themes/Generic.xaml
BorderThicknessToStrokeThicknessConverter.cs
/Xceed.Wpf.Toolkit/Core/Converters/BorderThicknessToStrokeThicknessConverter.cs
/Xceed.Wpf.Toolkit/Core/Converters/BorderThicknessToStrokeThicknessConverter.cs
CalculatorMemoryToVisibilityConverter.cs
/Xceed.Wpf.Toolkit/Core/Converters/CalculatorMemoryToVisibilityConverter.cs
/Xceed.Wpf.Toolkit/Core/Converters/CalculatorMemoryToVisibilityConverter.cs
CenterTitleConverter.cs
/Xceed.Wpf.Toolkit/Core/Converters/CenterTitleConverter.cs
/Xceed.Wpf.Toolkit/Core/Converters/CenterTitleConverter.cs
ColorBlendConverter.cs
/Xceed.Wpf.Toolkit/Core/Converters/ColorBlendConverter.cs
/Xceed.Wpf.Toolkit/Core/Converters/ColorBlendConverter.cs
ColorToSolidColorBrushConverter.cs
/Xceed.Wpf.Toolkit/Core/Converters/ColorToSolidColorBrushConverter.cs
/Xceed.Wpf.Toolkit/Core/Converters/ColorToSolidColorBrushConverter.cs
CornerRadiusToDoubleConverter.cs
/Xceed.Wpf.Toolkit/Core/Converters/CornerRadiusToDoubleConverter.cs
/Xceed.Wpf.Toolkit/Core/Converters/CornerRadiusToDoubleConverter.cs
HalfConverter.cs
/Xceed.Wpf.Toolkit/Core/Converters/HalfConverter.cs
/Xceed.Wpf.Toolkit/Core/Converters/HalfConverter.cs
IntToThicknessConverter.cs
/Xceed.Wpf.Toolkit/Core/Converters/IntToThicknessConverter.cs
/Xceed.Wpf.Toolkit/Core/Converters/IntToThicknessConverter.cs
InverseBoolConverter.cs
/Xceed.Wpf.Toolkit/Core/Converters/InverseBoolConverter.cs
/Xceed.Wpf.Toolkit/Core/Converters/InverseBoolConverter.cs
ObjectTypeToNameConverter.cs
/Xceed.Wpf.Toolkit/Core/Converters/ObjectTypeToNameConverter.cs
/Xceed.Wpf.Toolkit/Core/Converters/ObjectTypeToNameConverter.cs
RoundedValueConverter.cs
/Xceed.Wpf.Toolkit/Core/Converters/RoundedValueConverter.cs
/Xceed.Wpf.Toolkit/Core/Converters/RoundedValueConverter.cs
SolidColorBrushToColorConverter.cs
/Xceed.Wpf.Toolkit/Core/Converters/SolidColorBrushToColorConverter.cs
/Xceed.Wpf.Toolkit/Core/Converters/SolidColorBrushToColorConverter.cs
ThicknessToDoubleConverter.cs
/Xceed.Wpf.Toolkit/Core/Converters/ThicknessToDoubleConverter.cs
/Xceed.Wpf.Toolkit/Core/Converters/ThicknessToDoubleConverter.cs
VisibilityToBoolConverter.cs
/Xceed.Wpf.Toolkit/Core/Converters/VisibilityToBoolConverter.cs
/Xceed.Wpf.Toolkit/Core/Converters/VisibilityToBoolConverter.cs
WindowContentBorderMarginConverter.cs
/Xceed.Wpf.Toolkit/Core/Converters/WindowContentBorderMarginConverter.cs
/Xceed.Wpf.Toolkit/Core/Converters/WindowContentBorderMarginConverter.cs
WindowControlBackgroundConverter.cs
/Xceed.Wpf.Toolkit/Core/Converters/WindowControlBackgroundConverter.cs
/Xceed.Wpf.Toolkit/Core/Converters/WindowControlBackgroundConverter.cs
WizardPageButtonVisibilityConverter.cs
/Xceed.Wpf.Toolkit/Core/Converters/WizardPageButtonVisibilityConverter.cs
/Xceed.Wpf.Toolkit/Core/Converters/WizardPageButtonVisibilityConverter.cs
InputValidationErrorEventArgs.cs
/Xceed.Wpf.Toolkit/Core/Input/InputValidationErrorEventArgs.cs
/Xceed.Wpf.Toolkit/Core/Input/InputValidationErrorEventArgs.cs
IValidateInput.cs
/Xceed.Wpf.Toolkit/Core/Input/IValidateInput.cs
/Xceed.Wpf.Toolkit/Core/Input/IValidateInput.cs
KeyModifier.cs
/Xceed.Wpf.Toolkit/Core/Input/KeyModifier.cs
/Xceed.Wpf.Toolkit/Core/Input/KeyModifier.cs
KeyModifierCollection.cs
/Xceed.Wpf.Toolkit/Core/Input/KeyModifierCollection.cs
/Xceed.Wpf.Toolkit/Core/Input/KeyModifierCollection.cs
KeyModifierCollectionConverter.cs
/Xceed.Wpf.Toolkit/Core/Input/KeyModifierCollectionConverter.cs
/Xceed.Wpf.Toolkit/Core/Input/KeyModifierCollectionConverter.cs
AnimationRate.cs
/Xceed.Wpf.Toolkit/Core/Media/Animation/AnimationRate.cs
/Xceed.Wpf.Toolkit/Core/Media/Animation/AnimationRate.cs
AnimationRateConverter.cs
/Xceed.Wpf.Toolkit/Core/Media/Animation/AnimationRateConverter.cs
/Xceed.Wpf.Toolkit/Core/Media/Animation/AnimationRateConverter.cs
IterativeAnimationEquation.cs
/Xceed.Wpf.Toolkit/Core/Media/Animation/IterativeAnimationEquation.cs
/Xceed.Wpf.Toolkit/Core/Media/Animation/IterativeAnimationEquation.cs
IterativeAnimationEquationDelegate.cs
/Xceed.Wpf.Toolkit/Core/Media/Animation/IterativeAnimationEquationDelegate.cs
/Xceed.Wpf.Toolkit/Core/Media/Animation/IterativeAnimationEquationDelegate.cs
IterativeEquationConverter.cs
/Xceed.Wpf.Toolkit/Core/Media/Animation/IterativeEquationConverter.cs
/Xceed.Wpf.Toolkit/Core/Media/Animation/IterativeEquationConverter.cs
PennerEquation.cs
/Xceed.Wpf.Toolkit/Core/Media/Animation/PennerEquation.cs
/Xceed.Wpf.Toolkit/Core/Media/Animation/PennerEquation.cs
PennerEquations.cs
/Xceed.Wpf.Toolkit/Core/Media/Animation/PennerEquations.cs
/Xceed.Wpf.Toolkit/Core/Media/Animation/PennerEquations.cs
WindowColors.cs
/Xceed.Wpf.Toolkit/Core/Media/WindowColors.cs
/Xceed.Wpf.Toolkit/Core/Media/WindowColors.cs
CalculatorUtilities.cs
/Xceed.Wpf.Toolkit/Core/Utilities/CalculatorUtilities.cs
/Xceed.Wpf.Toolkit/Core/Utilities/CalculatorUtilities.cs
ChangeTypeHelper.cs
/Xceed.Wpf.Toolkit/Core/Utilities/ChangeTypeHelper.cs
/Xceed.Wpf.Toolkit/Core/Utilities/ChangeTypeHelper.cs
ColorUtilities.cs
/Xceed.Wpf.Toolkit/Core/Utilities/ColorUtilities.cs
/Xceed.Wpf.Toolkit/Core/Utilities/ColorUtilities.cs
ContextMenuUtilities.cs
/Xceed.Wpf.Toolkit/Core/Utilities/ContextMenuUtilities.cs
/Xceed.Wpf.Toolkit/Core/Utilities/ContextMenuUtilities.cs
DateTimeUtilities.cs
/Xceed.Wpf.Toolkit/Core/Utilities/DateTimeUtilities.cs
/Xceed.Wpf.Toolkit/Core/Utilities/DateTimeUtilities.cs
DoubleHelper.cs
/Xceed.Wpf.Toolkit/Core/Utilities/DoubleHelper.cs
/Xceed.Wpf.Toolkit/Core/Utilities/DoubleHelper.cs
EllipseHelper.cs
/Xceed.Wpf.Toolkit/Core/Utilities/EllipseHelper.cs
/Xceed.Wpf.Toolkit/Core/Utilities/EllipseHelper.cs
FontUtilities.cs
/Xceed.Wpf.Toolkit/Core/Utilities/FontUtilities.cs
/Xceed.Wpf.Toolkit/Core/Utilities/FontUtilities.cs
GeneralUtilities.cs
/Xceed.Wpf.Toolkit/Core/Utilities/GeneralUtilities.cs
/Xceed.Wpf.Toolkit/Core/Utilities/GeneralUtilities.cs
KeyboardUtilities.cs
/Xceed.Wpf.Toolkit/Core/Utilities/KeyboardUtilities.cs
/Xceed.Wpf.Toolkit/Core/Utilities/KeyboardUtilities.cs
ListUtilities.cs
/Xceed.Wpf.Toolkit/Core/Utilities/ListUtilities.cs
/Xceed.Wpf.Toolkit/Core/Utilities/ListUtilities.cs
PointHelper.cs
/Xceed.Wpf.Toolkit/Core/Utilities/PointHelper.cs
/Xceed.Wpf.Toolkit/Core/Utilities/PointHelper.cs
PropertyChangedExt.cs
/Xceed.Wpf.Toolkit/Core/Utilities/PropertyChangedExt.cs
/Xceed.Wpf.Toolkit/Core/Utilities/PropertyChangedExt.cs
RectHelper.cs
/Xceed.Wpf.Toolkit/Core/Utilities/RectHelper.cs
/Xceed.Wpf.Toolkit/Core/Utilities/RectHelper.cs
ReflectionHelper.cs
/Xceed.Wpf.Toolkit/Core/Utilities/ReflectionHelper.cs
/Xceed.Wpf.Toolkit/Core/Utilities/ReflectionHelper.cs
ResourceHelper.cs
/Xceed.Wpf.Toolkit/Core/Utilities/ResourceHelper.cs
/Xceed.Wpf.Toolkit/Core/Utilities/ResourceHelper.cs
RoutedEventHelper.cs
/Xceed.Wpf.Toolkit/Core/Utilities/RoutedEventHelper.cs
/Xceed.Wpf.Toolkit/Core/Utilities/RoutedEventHelper.cs
Segment.cs
/Xceed.Wpf.Toolkit/Core/Utilities/Segment.cs
/Xceed.Wpf.Toolkit/Core/Utilities/Segment.cs
TreeHelper.cs
/Xceed.Wpf.Toolkit/Core/Utilities/TreeHelper.cs
/Xceed.Wpf.Toolkit/Core/Utilities/TreeHelper.cs
ValueChangeHelper.cs
/Xceed.Wpf.Toolkit/Core/Utilities/ValueChangeHelper.cs
/Xceed.Wpf.Toolkit/Core/Utilities/ValueChangeHelper.cs
VisualTreeHelperEx.cs
/Xceed.Wpf.Toolkit/Core/Utilities/VisualTreeHelperEx.cs
/Xceed.Wpf.Toolkit/Core/Utilities/VisualTreeHelperEx.cs
WeakEventListener.cs
/Xceed.Wpf.Toolkit/Core/Utilities/WeakEventListener.cs
/Xceed.Wpf.Toolkit/Core/Utilities/WeakEventListener.cs
WindowUtilities.cs
/Xceed.Wpf.Toolkit/Core/Utilities/WindowUtilities.cs
/Xceed.Wpf.Toolkit/Core/Utilities/WindowUtilities.cs
CancelRoutedEventArgs.cs
/Xceed.Wpf.Toolkit/Core/CancelRoutedEventArgs.cs
/Xceed.Wpf.Toolkit/Core/CancelRoutedEventArgs.cs
ErrorMessages.cs
/Xceed.Wpf.Toolkit/Core/ErrorMessages.cs
/Xceed.Wpf.Toolkit/Core/ErrorMessages.cs
ErrorMessages.resx
/Xceed.Wpf.Toolkit/Core/ErrorMessages.resx
/Xceed.Wpf.Toolkit/Core/ErrorMessages.resx
IndexChangedEventArgs.cs
/Xceed.Wpf.Toolkit/Core/IndexChangedEventArgs.cs
/Xceed.Wpf.Toolkit/Core/IndexChangedEventArgs.cs
IndexChangedEventHandler.cs
/Xceed.Wpf.Toolkit/Core/IndexChangedEventHandler.cs
/Xceed.Wpf.Toolkit/Core/IndexChangedEventHandler.cs
InvalidContentException.cs
/Xceed.Wpf.Toolkit/Core/InvalidContentException.cs
/Xceed.Wpf.Toolkit/Core/InvalidContentException.cs
InvalidTemplateException.cs
/Xceed.Wpf.Toolkit/Core/InvalidTemplateException.cs
/Xceed.Wpf.Toolkit/Core/InvalidTemplateException.cs
PropertyChangedEventArgs.cs
/Xceed.Wpf.Toolkit/Core/PropertyChangedEventArgs.cs
/Xceed.Wpf.Toolkit/Core/PropertyChangedEventArgs.cs
PropertyChangedEventHandler.cs
/Xceed.Wpf.Toolkit/Core/PropertyChangedEventHandler.cs
/Xceed.Wpf.Toolkit/Core/PropertyChangedEventHandler.cs
QueryTextFromValueEventArgs.cs
/Xceed.Wpf.Toolkit/Core/QueryTextFromValueEventArgs.cs
/Xceed.Wpf.Toolkit/Core/QueryTextFromValueEventArgs.cs
QueryValueFromTextEventArgs.cs
/Xceed.Wpf.Toolkit/Core/QueryValueFromTextEventArgs.cs
/Xceed.Wpf.Toolkit/Core/QueryValueFromTextEventArgs.cs
UIElementAdorner.cs
/Xceed.Wpf.Toolkit/Core/UIElementAdorner.cs
/Xceed.Wpf.Toolkit/Core/UIElementAdorner.cs
VersionResourceDictionary.cs
/Xceed.Wpf.Toolkit/Core/VersionResourceDictionary.cs
/Xceed.Wpf.Toolkit/Core/VersionResourceDictionary.cs
WeakCollectionChangedWrapper.cs
/Xceed.Wpf.Toolkit/Core/WeakCollectionChangedWrapper.cs
/Xceed.Wpf.Toolkit/Core/WeakCollectionChangedWrapper.cs
DateTimePicker.cs
/Xceed.Wpf.Toolkit/DateTimePicker/Implementation/DateTimePicker.cs
/Xceed.Wpf.Toolkit/DateTimePicker/Implementation/DateTimePicker.cs
Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/DateTimePicker/Themes/Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/DateTimePicker/Themes/Aero2.NormalColor.xaml
Generic.xaml
/Xceed.Wpf.Toolkit/DateTimePicker/Themes/Generic.xaml
/Xceed.Wpf.Toolkit/DateTimePicker/Themes/Generic.xaml
DateTimeFormat.cs
/Xceed.Wpf.Toolkit/DateTimeUpDown/Implementation/DateTimeFormat.cs
/Xceed.Wpf.Toolkit/DateTimeUpDown/Implementation/DateTimeFormat.cs
DateTimeInfo.cs
/Xceed.Wpf.Toolkit/DateTimeUpDown/Implementation/DateTimeInfo.cs
/Xceed.Wpf.Toolkit/DateTimeUpDown/Implementation/DateTimeInfo.cs
DateTimeParser.cs
/Xceed.Wpf.Toolkit/DateTimeUpDown/Implementation/DateTimeParser.cs
/Xceed.Wpf.Toolkit/DateTimeUpDown/Implementation/DateTimeParser.cs
DateTimePart.cs
/Xceed.Wpf.Toolkit/DateTimeUpDown/Implementation/DateTimePart.cs
/Xceed.Wpf.Toolkit/DateTimeUpDown/Implementation/DateTimePart.cs
DateTimeUpDown.cs
/Xceed.Wpf.Toolkit/DateTimeUpDown/Implementation/DateTimeUpDown.cs
/Xceed.Wpf.Toolkit/DateTimeUpDown/Implementation/DateTimeUpDown.cs
Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/DateTimeUpDown/Themes/Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/DateTimeUpDown/Themes/Aero2.NormalColor.xaml
Generic.xaml
/Xceed.Wpf.Toolkit/DateTimeUpDown/Themes/Generic.xaml
/Xceed.Wpf.Toolkit/DateTimeUpDown/Themes/Generic.xaml
DropDownButton.cs
/Xceed.Wpf.Toolkit/DropDownButton/Implementation/DropDownButton.cs
/Xceed.Wpf.Toolkit/DropDownButton/Implementation/DropDownButton.cs
Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/DropDownButton/Themes/Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/DropDownButton/Themes/Aero2.NormalColor.xaml
Generic.xaml
/Xceed.Wpf.Toolkit/DropDownButton/Themes/Generic.xaml
/Xceed.Wpf.Toolkit/DropDownButton/Themes/Generic.xaml
RadiusConverter.cs
/Xceed.Wpf.Toolkit/Magnifier/Implementation/Converters/RadiusConverter.cs
/Xceed.Wpf.Toolkit/Magnifier/Implementation/Converters/RadiusConverter.cs
FrameType.cs
/Xceed.Wpf.Toolkit/Magnifier/Implementation/FrameType.cs
/Xceed.Wpf.Toolkit/Magnifier/Implementation/FrameType.cs
Magnifier.cs
/Xceed.Wpf.Toolkit/Magnifier/Implementation/Magnifier.cs
/Xceed.Wpf.Toolkit/Magnifier/Implementation/Magnifier.cs
MagnifierAdorner.cs
/Xceed.Wpf.Toolkit/Magnifier/Implementation/MagnifierAdorner.cs
/Xceed.Wpf.Toolkit/Magnifier/Implementation/MagnifierAdorner.cs
MagnifierManager.cs
/Xceed.Wpf.Toolkit/Magnifier/Implementation/MagnifierManager.cs
/Xceed.Wpf.Toolkit/Magnifier/Implementation/MagnifierManager.cs
Generic.xaml
/Xceed.Wpf.Toolkit/Magnifier/Themes/Generic.xaml
/Xceed.Wpf.Toolkit/Magnifier/Themes/Generic.xaml
AutoCompletingMaskEventArgs.cs
/Xceed.Wpf.Toolkit/MaskedTextBox/Implementation/AutoCompletingMaskEventArgs.cs
/Xceed.Wpf.Toolkit/MaskedTextBox/Implementation/AutoCompletingMaskEventArgs.cs
InsertKeyModeEnum.cs
/Xceed.Wpf.Toolkit/MaskedTextBox/Implementation/InsertKeyModeEnum.cs
/Xceed.Wpf.Toolkit/MaskedTextBox/Implementation/InsertKeyModeEnum.cs
MaskedTextBox.cs
/Xceed.Wpf.Toolkit/MaskedTextBox/Implementation/MaskedTextBox.cs
/Xceed.Wpf.Toolkit/MaskedTextBox/Implementation/MaskedTextBox.cs
MaskFormatEnum.cs
/Xceed.Wpf.Toolkit/MaskedTextBox/Implementation/MaskFormatEnum.cs
/Xceed.Wpf.Toolkit/MaskedTextBox/Implementation/MaskFormatEnum.cs
Error48.png
/Xceed.Wpf.Toolkit/MessageBox/Icons/Error48.png
/Xceed.Wpf.Toolkit/MessageBox/Icons/Error48.png
Information48.png
/Xceed.Wpf.Toolkit/MessageBox/Icons/Information48.png
/Xceed.Wpf.Toolkit/MessageBox/Icons/Information48.png
Question48.png
/Xceed.Wpf.Toolkit/MessageBox/Icons/Question48.png
/Xceed.Wpf.Toolkit/MessageBox/Icons/Question48.png
Warning48.png
/Xceed.Wpf.Toolkit/MessageBox/Icons/Warning48.png
/Xceed.Wpf.Toolkit/MessageBox/Icons/Warning48.png
MessageBox.cs
/Xceed.Wpf.Toolkit/MessageBox/Implementation/MessageBox.cs
/Xceed.Wpf.Toolkit/MessageBox/Implementation/MessageBox.cs
VisualStates.MessageBox.cs
/Xceed.Wpf.Toolkit/MessageBox/Implementation/VisualStates.MessageBox.cs
/Xceed.Wpf.Toolkit/MessageBox/Implementation/VisualStates.MessageBox.cs
Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/MessageBox/Themes/Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/MessageBox/Themes/Aero2.NormalColor.xaml
Generic.xaml
/Xceed.Wpf.Toolkit/MessageBox/Themes/Generic.xaml
/Xceed.Wpf.Toolkit/MessageBox/Themes/Generic.xaml
Notes16.png
/Xceed.Wpf.Toolkit/MultiLineTextEditor/Images/Notes16.png
/Xceed.Wpf.Toolkit/MultiLineTextEditor/Images/Notes16.png
MultiLineTextEditor.cs
/Xceed.Wpf.Toolkit/MultiLineTextEditor/Implementation/MultiLineTextEditor.cs
/Xceed.Wpf.Toolkit/MultiLineTextEditor/Implementation/MultiLineTextEditor.cs
Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/MultiLineTextEditor/Themes/Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/MultiLineTextEditor/Themes/Aero2.NormalColor.xaml
Generic.xaml
/Xceed.Wpf.Toolkit/MultiLineTextEditor/Themes/Generic.xaml
/Xceed.Wpf.Toolkit/MultiLineTextEditor/Themes/Generic.xaml
AllowedSpecialValuesEnum.cs
/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/AllowedSpecialValuesEnum.cs
/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/AllowedSpecialValuesEnum.cs
ByteUpDown.cs
/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/ByteUpDown.cs
/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/ByteUpDown.cs
CommonNumericUpDown.cs
/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/CommonNumericUpDown.cs
/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/CommonNumericUpDown.cs
DecimalUpDown.cs
/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/DecimalUpDown.cs
/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/DecimalUpDown.cs
DoubleUpDown.cs
/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/DoubleUpDown.cs
/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/DoubleUpDown.cs
IntegerUpDown.cs
/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/IntegerUpDown.cs
/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/IntegerUpDown.cs
LongUpDown.cs
/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/LongUpDown.cs
/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/LongUpDown.cs
NumericUpDown.cs
/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/NumericUpDown.cs
/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/NumericUpDown.cs
SByteUpDown.cs
/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/SByteUpDown.cs
/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/SByteUpDown.cs
ShortUpDown.cs
/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/ShortUpDown.cs
/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/ShortUpDown.cs
SingleUpDown.cs
/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/SingleUpDown.cs
/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/SingleUpDown.cs
UIntegerUpDown.cs
/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/UIntegerUpDown.cs
/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/UIntegerUpDown.cs
ULongUpDown.cs
/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/ULongUpDown.cs
/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/ULongUpDown.cs
UShortUpDown.cs
/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/UShortUpDown.cs
/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/UShortUpDown.cs
Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/NumericUpDown/Themes/Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/NumericUpDown/Themes/Aero2.NormalColor.xaml
Generic.xaml
/Xceed.Wpf.Toolkit/NumericUpDown/Themes/Generic.xaml
/Xceed.Wpf.Toolkit/NumericUpDown/Themes/Generic.xaml
MaskedTextBox.cs
/Xceed.Wpf.Toolkit/Obselete/MaskedTextBox/Implementation/MaskedTextBox.cs
/Xceed.Wpf.Toolkit/Obselete/MaskedTextBox/Implementation/MaskedTextBox.cs
AnimationPanel.cs
/Xceed.Wpf.Toolkit/Panels/AnimationPanel.cs
/Xceed.Wpf.Toolkit/Panels/AnimationPanel.cs
AnimatorConverter.cs
/Xceed.Wpf.Toolkit/Panels/AnimatorConverter.cs
/Xceed.Wpf.Toolkit/Panels/AnimatorConverter.cs
Animators.cs
/Xceed.Wpf.Toolkit/Panels/Animators.cs
/Xceed.Wpf.Toolkit/Panels/Animators.cs
ChildEnteredEventArgs.cs
/Xceed.Wpf.Toolkit/Panels/ChildEnteredEventArgs.cs
/Xceed.Wpf.Toolkit/Panels/ChildEnteredEventArgs.cs
ChildEnteredEventHandler.cs
/Xceed.Wpf.Toolkit/Panels/ChildEnteredEventHandler.cs
/Xceed.Wpf.Toolkit/Panels/ChildEnteredEventHandler.cs
ChildEnteringEventArgs.cs
/Xceed.Wpf.Toolkit/Panels/ChildEnteringEventArgs.cs
/Xceed.Wpf.Toolkit/Panels/ChildEnteringEventArgs.cs
ChildEnteringEventHandler.cs
/Xceed.Wpf.Toolkit/Panels/ChildEnteringEventHandler.cs
/Xceed.Wpf.Toolkit/Panels/ChildEnteringEventHandler.cs
ChildExitedEventArgs.cs
/Xceed.Wpf.Toolkit/Panels/ChildExitedEventArgs.cs
/Xceed.Wpf.Toolkit/Panels/ChildExitedEventArgs.cs
ChildExitedEventHandler.cs
/Xceed.Wpf.Toolkit/Panels/ChildExitedEventHandler.cs
/Xceed.Wpf.Toolkit/Panels/ChildExitedEventHandler.cs
ChildExitingEventArgs.cs
/Xceed.Wpf.Toolkit/Panels/ChildExitingEventArgs.cs
/Xceed.Wpf.Toolkit/Panels/ChildExitingEventArgs.cs
ChildExitingEventHandler.cs
/Xceed.Wpf.Toolkit/Panels/ChildExitingEventHandler.cs
/Xceed.Wpf.Toolkit/Panels/ChildExitingEventHandler.cs
DoubleAnimator.cs
/Xceed.Wpf.Toolkit/Panels/DoubleAnimator.cs
/Xceed.Wpf.Toolkit/Panels/DoubleAnimator.cs
IterativeAnimator.cs
/Xceed.Wpf.Toolkit/Panels/IterativeAnimator.cs
/Xceed.Wpf.Toolkit/Panels/IterativeAnimator.cs
PanelBase.cs
/Xceed.Wpf.Toolkit/Panels/PanelBase.cs
/Xceed.Wpf.Toolkit/Panels/PanelBase.cs
RandomPanel.cs
/Xceed.Wpf.Toolkit/Panels/RandomPanel.cs
/Xceed.Wpf.Toolkit/Panels/RandomPanel.cs
ScrollHelper.cs
/Xceed.Wpf.Toolkit/Panels/ScrollHelper.cs
/Xceed.Wpf.Toolkit/Panels/ScrollHelper.cs
SwitchPanel.cs
/Xceed.Wpf.Toolkit/Panels/SwitchPanel.cs
/Xceed.Wpf.Toolkit/Panels/SwitchPanel.cs
SwitchPresenter.cs
/Xceed.Wpf.Toolkit/Panels/SwitchPresenter.cs
/Xceed.Wpf.Toolkit/Panels/SwitchPresenter.cs
SwitchTemplate.cs
/Xceed.Wpf.Toolkit/Panels/SwitchTemplate.cs
/Xceed.Wpf.Toolkit/Panels/SwitchTemplate.cs
WrapPanel.cs
/Xceed.Wpf.Toolkit/Panels/WrapPanel.cs
/Xceed.Wpf.Toolkit/Panels/WrapPanel.cs
Pie.cs
/Xceed.Wpf.Toolkit/Pie/Implementation/Pie.cs
/Xceed.Wpf.Toolkit/Pie/Implementation/Pie.cs
PieModeEnum.cs
/Xceed.Wpf.Toolkit/Pie/Implementation/PieModeEnum.cs
/Xceed.Wpf.Toolkit/Pie/Implementation/PieModeEnum.cs
Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/Pie/Themes/Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/Pie/Themes/Aero2.NormalColor.xaml
Generic.xaml
/Xceed.Wpf.Toolkit/Pie/Themes/Generic.xaml
/Xceed.Wpf.Toolkit/Pie/Themes/Generic.xaml
SelectorItem.xaml
/Xceed.Wpf.Toolkit/Primitives/Themes/Aero2/SelectorItem.xaml
/Xceed.Wpf.Toolkit/Primitives/Themes/Aero2/SelectorItem.xaml
WindowControl.xaml
/Xceed.Wpf.Toolkit/Primitives/Themes/Aero2/WindowControl.xaml
/Xceed.Wpf.Toolkit/Primitives/Themes/Aero2/WindowControl.xaml
SelectorItem.xaml
/Xceed.Wpf.Toolkit/Primitives/Themes/Generic/SelectorItem.xaml
/Xceed.Wpf.Toolkit/Primitives/Themes/Generic/SelectorItem.xaml
WindowControl.xaml
/Xceed.Wpf.Toolkit/Primitives/Themes/Generic/WindowControl.xaml
/Xceed.Wpf.Toolkit/Primitives/Themes/Generic/WindowControl.xaml
ResourceKeys.cs
/Xceed.Wpf.Toolkit/Primitives/Themes/ResourceKeys.cs
/Xceed.Wpf.Toolkit/Primitives/Themes/ResourceKeys.cs
CachedTextInfo.cs
/Xceed.Wpf.Toolkit/Primitives/CachedTextInfo.cs
/Xceed.Wpf.Toolkit/Primitives/CachedTextInfo.cs
DateTimePickerBase.cs
/Xceed.Wpf.Toolkit/Primitives/DateTimePickerBase.cs
/Xceed.Wpf.Toolkit/Primitives/DateTimePickerBase.cs
DateTimeUpDownBase.cs
/Xceed.Wpf.Toolkit/Primitives/DateTimeUpDownBase.cs
/Xceed.Wpf.Toolkit/Primitives/DateTimeUpDownBase.cs
HsvColor.cs
/Xceed.Wpf.Toolkit/Primitives/HsvColor.cs
/Xceed.Wpf.Toolkit/Primitives/HsvColor.cs
InputBase.cs
/Xceed.Wpf.Toolkit/Primitives/InputBase.cs
/Xceed.Wpf.Toolkit/Primitives/InputBase.cs
MouseWheelActiveTriggerEnum.cs
/Xceed.Wpf.Toolkit/Primitives/MouseWheelActiveTriggerEnum.cs
/Xceed.Wpf.Toolkit/Primitives/MouseWheelActiveTriggerEnum.cs
Selector.cs
/Xceed.Wpf.Toolkit/Primitives/Selector.cs
/Xceed.Wpf.Toolkit/Primitives/Selector.cs
SelectorItem.cs
/Xceed.Wpf.Toolkit/Primitives/SelectorItem.cs
/Xceed.Wpf.Toolkit/Primitives/SelectorItem.cs
ShapeBase.cs
/Xceed.Wpf.Toolkit/Primitives/ShapeBase.cs
/Xceed.Wpf.Toolkit/Primitives/ShapeBase.cs
UpDownBase.cs
/Xceed.Wpf.Toolkit/Primitives/UpDownBase.cs
/Xceed.Wpf.Toolkit/Primitives/UpDownBase.cs
ValueRangeTextBox.cs
/Xceed.Wpf.Toolkit/Primitives/ValueRangeTextBox.cs
/Xceed.Wpf.Toolkit/Primitives/ValueRangeTextBox.cs
WindowContainer.cs
/Xceed.Wpf.Toolkit/Primitives/WindowContainer.cs
/Xceed.Wpf.Toolkit/Primitives/WindowContainer.cs
WindowControl.cs
/Xceed.Wpf.Toolkit/Primitives/WindowControl.cs
/Xceed.Wpf.Toolkit/Primitives/WindowControl.cs
AssemblyInfo.cs
/Xceed.Wpf.Toolkit/Properties/AssemblyInfo.cs
/Xceed.Wpf.Toolkit/Properties/AssemblyInfo.cs
AdvancedProperties11.png
/Xceed.Wpf.Toolkit/PropertyGrid/Images/AdvancedProperties11.png
/Xceed.Wpf.Toolkit/PropertyGrid/Images/AdvancedProperties11.png
Categorize16.png
/Xceed.Wpf.Toolkit/PropertyGrid/Images/Categorize16.png
/Xceed.Wpf.Toolkit/PropertyGrid/Images/Categorize16.png
ClearFilter16.png
/Xceed.Wpf.Toolkit/PropertyGrid/Images/ClearFilter16.png
/Xceed.Wpf.Toolkit/PropertyGrid/Images/ClearFilter16.png
Database11.png
/Xceed.Wpf.Toolkit/PropertyGrid/Images/Database11.png
/Xceed.Wpf.Toolkit/PropertyGrid/Images/Database11.png
Inheritance11.png
/Xceed.Wpf.Toolkit/PropertyGrid/Images/Inheritance11.png
/Xceed.Wpf.Toolkit/PropertyGrid/Images/Inheritance11.png
Local11.png
/Xceed.Wpf.Toolkit/PropertyGrid/Images/Local11.png
/Xceed.Wpf.Toolkit/PropertyGrid/Images/Local11.png
Resource11.png
/Xceed.Wpf.Toolkit/PropertyGrid/Images/Resource11.png
/Xceed.Wpf.Toolkit/PropertyGrid/Images/Resource11.png
SortAscending16.png
/Xceed.Wpf.Toolkit/PropertyGrid/Images/SortAscending16.png
/Xceed.Wpf.Toolkit/PropertyGrid/Images/SortAscending16.png
Style11.png
/Xceed.Wpf.Toolkit/PropertyGrid/Images/Style11.png
/Xceed.Wpf.Toolkit/PropertyGrid/Images/Style11.png
CategoryOrderAttribute.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Attributes/CategoryOrderAttribute.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Attributes/CategoryOrderAttribute.cs
ExpandableObjectAttribute.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Attributes/ExpandableObjectAttribute.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Attributes/ExpandableObjectAttribute.cs
IItemsSource.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Attributes/IItemsSource.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Attributes/IItemsSource.cs
ItemsSourceAttribute.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Attributes/ItemsSourceAttribute.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Attributes/ItemsSourceAttribute.cs
NewItemTypesAttribute.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Attributes/NewItemTypesAttribute.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Attributes/NewItemTypesAttribute.cs
PropertyOrderAttribute.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Attributes/PropertyOrderAttribute.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Attributes/PropertyOrderAttribute.cs
PropertyGridCommands.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Commands/PropertyGridCommands.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Commands/PropertyGridCommands.cs
PropertyItemCommands.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Commands/PropertyItemCommands.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Commands/PropertyItemCommands.cs
EditorTimeSpanConverter.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Converters/EditorTimeSpanConverter.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Converters/EditorTimeSpanConverter.cs
ExpandableObjectMarginConverter.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Converters/ExpandableObjectMarginConverter.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Converters/ExpandableObjectMarginConverter.cs
IsStringEmptyConverter.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Converters/IsStringEmptyConverter.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Converters/IsStringEmptyConverter.cs
ListConverter.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Converters/ListConverter.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Converters/ListConverter.cs
ObjectToUIElementConverter.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Converters/ObjectToUIElementConverter.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Converters/ObjectToUIElementConverter.cs
SelectedObjectConverter.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Converters/SelectedObjectConverter.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Converters/SelectedObjectConverter.cs
DefinitionBase.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Definitions/DefinitionBase.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Definitions/DefinitionBase.cs
EditorDefinitionBase.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Definitions/EditorDefinitionBase.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Definitions/EditorDefinitionBase.cs
EditorTemplateDefinition.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Definitions/EditorTemplateDefinition.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Definitions/EditorTemplateDefinition.cs
PropertyDefinitionBase.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Definitions/PropertyDefinitionBase.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Definitions/PropertyDefinitionBase.cs
CheckBoxEditor.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Editors/CheckBoxEditor.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Editors/CheckBoxEditor.cs
CollectionEditor.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Editors/CollectionEditor.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Editors/CollectionEditor.cs
ColorEditor.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Editors/ColorEditor.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Editors/ColorEditor.cs
ComboBoxEditor.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Editors/ComboBoxEditor.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Editors/ComboBoxEditor.cs
EnumComboBoxEditor.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Editors/EnumComboBoxEditor.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Editors/EnumComboBoxEditor.cs
FontComboBoxEditor.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Editors/FontComboBoxEditor.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Editors/FontComboBoxEditor.cs
ItemsSourceAttributeEditor.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Editors/ItemsSourceAttributeEditor.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Editors/ItemsSourceAttributeEditor.cs
ITypeEditor.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Editors/ITypeEditor.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Editors/ITypeEditor.cs
MaskedTextBoxEditor.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Editors/MaskedTextBoxEditor.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Editors/MaskedTextBoxEditor.cs
PrimitiveTypeCollectionEditor.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Editors/PrimitiveTypeCollectionEditor.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Editors/PrimitiveTypeCollectionEditor.cs
TextBlockEditor.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Editors/TextBlockEditor.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Editors/TextBlockEditor.cs
TextBoxEditor.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Editors/TextBoxEditor.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Editors/TextBoxEditor.cs
TypeEditor.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Editors/TypeEditor.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Editors/TypeEditor.cs
UpDownEditors.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Editors/UpDownEditors.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Editors/UpDownEditors.cs
CommonPropertyExceptionValidationRule.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/CommonPropertyExceptionValidationRule.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/CommonPropertyExceptionValidationRule.cs
ContainerHelperBase.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/ContainerHelperBase.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/ContainerHelperBase.cs
CustomPropertyItem.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/CustomPropertyItem.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/CustomPropertyItem.cs
DescriptorPropertyDefinition.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/DescriptorPropertyDefinition.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/DescriptorPropertyDefinition.cs
DescriptorPropertyDefinitionBase.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/DescriptorPropertyDefinitionBase.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/DescriptorPropertyDefinitionBase.cs
EditorDefinition.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/EditorDefinition.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/EditorDefinition.cs
FilterInfo.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/FilterInfo.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/FilterInfo.cs
IPropertyContainer.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/IPropertyContainer.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/IPropertyContainer.cs
ObjectContainerHelper.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/ObjectContainerHelper.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/ObjectContainerHelper.cs
ObjectContainerHelperBase.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/ObjectContainerHelperBase.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/ObjectContainerHelperBase.cs
PropertyDefinition.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/PropertyDefinition.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/PropertyDefinition.cs
PropertyDefinitionBaseCollection.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/PropertyDefinitionBaseCollection.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/PropertyDefinitionBaseCollection.cs
PropertyGrid.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/PropertyGrid.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/PropertyGrid.cs
PropertyGridUtilities.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/PropertyGridUtilities.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/PropertyGridUtilities.cs
PropertyItem.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/PropertyItem.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/PropertyItem.cs
PropertyItemBase.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/PropertyItemBase.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/PropertyItemBase.cs
PropertyItemCollection.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/PropertyItemCollection.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/PropertyItemCollection.cs
PropertyItemsControl.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/PropertyItemsControl.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/PropertyItemsControl.cs
StringConstants.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/StringConstants.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/StringConstants.cs
TargetPropertyType.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/TargetPropertyType.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/TargetPropertyType.cs
TrimmedTextBlock.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/TrimmedTextBlock.cs
/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/TrimmedTextBlock.cs
Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/PropertyGrid/Themes/Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/PropertyGrid/Themes/Aero2.NormalColor.xaml
Generic.xaml
/Xceed.Wpf.Toolkit/PropertyGrid/Themes/Generic.xaml
/Xceed.Wpf.Toolkit/PropertyGrid/Themes/Generic.xaml
SliderThumbWidthConverter.cs
/Xceed.Wpf.Toolkit/RangeSlider/Implementation/Converters/SliderThumbWidthConverter.cs
/Xceed.Wpf.Toolkit/RangeSlider/Implementation/Converters/SliderThumbWidthConverter.cs
RangeSlider.cs
/Xceed.Wpf.Toolkit/RangeSlider/Implementation/RangeSlider.cs
/Xceed.Wpf.Toolkit/RangeSlider/Implementation/RangeSlider.cs
Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/RangeSlider/Themes/Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/RangeSlider/Themes/Aero2.NormalColor.xaml
Generic.xaml
/Xceed.Wpf.Toolkit/RangeSlider/Themes/Generic.xaml
/Xceed.Wpf.Toolkit/RangeSlider/Themes/Generic.xaml
ITextFormatter.cs
/Xceed.Wpf.Toolkit/RichTextBox/Formatters/ITextFormatter.cs
/Xceed.Wpf.Toolkit/RichTextBox/Formatters/ITextFormatter.cs
PlainTextFormatter.cs
/Xceed.Wpf.Toolkit/RichTextBox/Formatters/PlainTextFormatter.cs
/Xceed.Wpf.Toolkit/RichTextBox/Formatters/PlainTextFormatter.cs
RtfFormatter.cs
/Xceed.Wpf.Toolkit/RichTextBox/Formatters/RtfFormatter.cs
/Xceed.Wpf.Toolkit/RichTextBox/Formatters/RtfFormatter.cs
XamlFormatter.cs
/Xceed.Wpf.Toolkit/RichTextBox/Formatters/XamlFormatter.cs
/Xceed.Wpf.Toolkit/RichTextBox/Formatters/XamlFormatter.cs
RichTextBox.cs
/Xceed.Wpf.Toolkit/RichTextBox/RichTextBox.cs
/Xceed.Wpf.Toolkit/RichTextBox/RichTextBox.cs
Bold16.png
/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/Bold16.png
/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/Bold16.png
Bullets16.png
/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/Bullets16.png
/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/Bullets16.png
CenterAlign16.png
/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/CenterAlign16.png
/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/CenterAlign16.png
FontColorPicker16.png
/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/FontColorPicker16.png
/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/FontColorPicker16.png
Italic16.png
/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/Italic16.png
/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/Italic16.png
JustifyAlign16.png
/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/JustifyAlign16.png
/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/JustifyAlign16.png
LeftAlign16.png
/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/LeftAlign16.png
/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/LeftAlign16.png
Numbering16.png
/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/Numbering16.png
/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/Numbering16.png
RightAlign16.png
/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/RightAlign16.png
/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/RightAlign16.png
TextHighlightColorPicker16.png
/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/TextHighlightColorPicker16.png
/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/TextHighlightColorPicker16.png
Underline16.png
/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/Underline16.png
/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/Underline16.png
Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Themes/Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Themes/Aero2.NormalColor.xaml
Generic.xaml
/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Themes/Generic.xaml
/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Themes/Generic.xaml
IRichTextBoxFormatBar.cs
/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/IRichTextBoxFormatBar.cs
/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/IRichTextBoxFormatBar.cs
RichTextBoxFormatBar.cs
/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/RichTextBoxFormatBar.cs
/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/RichTextBoxFormatBar.cs
RichTextBoxFormatBarManager.cs
/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/RichTextBoxFormatBarManager.cs
/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/RichTextBoxFormatBarManager.cs
SplitButton.cs
/Xceed.Wpf.Toolkit/SplitButton/Implementation/SplitButton.cs
/Xceed.Wpf.Toolkit/SplitButton/Implementation/SplitButton.cs
Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/SplitButton/Themes/Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/SplitButton/Themes/Aero2.NormalColor.xaml
Generic.xaml
/Xceed.Wpf.Toolkit/SplitButton/Themes/Generic.xaml
/Xceed.Wpf.Toolkit/SplitButton/Themes/Generic.xaml
StyleableWindowClippingBorderConverter.cs
/Xceed.Wpf.Toolkit/StyleableWindow/Implementation/Converters/StyleableWindowClippingBorderConverter.cs
/Xceed.Wpf.Toolkit/StyleableWindow/Implementation/Converters/StyleableWindowClippingBorderConverter.cs
Brushes_NormalColor.xaml
/Xceed.Wpf.Toolkit/Themes/Aero/Brushes_NormalColor.xaml
/Xceed.Wpf.Toolkit/Themes/Aero/Brushes_NormalColor.xaml
Buttons_NormalColor.xaml
/Xceed.Wpf.Toolkit/Themes/Aero/Buttons_NormalColor.xaml
/Xceed.Wpf.Toolkit/Themes/Aero/Buttons_NormalColor.xaml
Brushes.xaml
/Xceed.Wpf.Toolkit/Themes/Aero2/Brushes.xaml
/Xceed.Wpf.Toolkit/Themes/Aero2/Brushes.xaml
Buttons.xaml
/Xceed.Wpf.Toolkit/Themes/Aero2/Buttons.xaml
/Xceed.Wpf.Toolkit/Themes/Aero2/Buttons.xaml
Common.xaml
/Xceed.Wpf.Toolkit/Themes/Aero2/Common.xaml
/Xceed.Wpf.Toolkit/Themes/Aero2/Common.xaml
Glyphs.xaml
/Xceed.Wpf.Toolkit/Themes/Aero2/Glyphs.xaml
/Xceed.Wpf.Toolkit/Themes/Aero2/Glyphs.xaml
close_hover.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_hover.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_hover.png
close_inactive.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_inactive.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_inactive.png
close_normal.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_normal.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_normal.png
close_pressed.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_pressed.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_pressed.png
close_rounded_hover.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_rounded_hover.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_rounded_hover.png
close_rounded_inactive.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_rounded_inactive.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_rounded_inactive.png
close_rounded_normal.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_rounded_normal.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_rounded_normal.png
close_rounded_pressed.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_rounded_pressed.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_rounded_pressed.png
close_toolwindow_hover.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_toolwindow_hover.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_toolwindow_hover.png
close_toolwindow_inactive.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_toolwindow_inactive.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_toolwindow_inactive.png
close_toolwindow_normal.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_toolwindow_normal.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_toolwindow_normal.png
close_toolwindow_pressed.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_toolwindow_pressed.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_toolwindow_pressed.png
maximize_disabled.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/maximize_disabled.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/maximize_disabled.png
maximize_hover.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/maximize_hover.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/maximize_hover.png
maximize_inactive.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/maximize_inactive.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/maximize_inactive.png
maximize_normal.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/maximize_normal.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/maximize_normal.png
maximize_pressed.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/maximize_pressed.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/maximize_pressed.png
minimize_hover.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/minimize_hover.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/minimize_hover.png
minimize_inactive.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/minimize_inactive.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/minimize_inactive.png
minimize_normal.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/minimize_normal.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/minimize_normal.png
minimize_pressed.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/minimize_pressed.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/minimize_pressed.png
resize_grip.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/resize_grip.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/resize_grip.png
restore_disabled.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/restore_disabled.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/restore_disabled.png
restore_hover.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/restore_hover.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/restore_hover.png
restore_inactive.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/restore_inactive.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/restore_inactive.png
restore_normal.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/restore_normal.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/restore_normal.png
restore_pressed.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/restore_pressed.png
/Xceed.Wpf.Toolkit/Themes/Generic/Images/restore_pressed.png
Brushes.xaml
/Xceed.Wpf.Toolkit/Themes/Generic/Brushes.xaml
/Xceed.Wpf.Toolkit/Themes/Generic/Brushes.xaml
Buttons.xaml
/Xceed.Wpf.Toolkit/Themes/Generic/Buttons.xaml
/Xceed.Wpf.Toolkit/Themes/Generic/Buttons.xaml
Common.xaml
/Xceed.Wpf.Toolkit/Themes/Generic/Common.xaml
/Xceed.Wpf.Toolkit/Themes/Generic/Common.xaml
Glyphs.xaml
/Xceed.Wpf.Toolkit/Themes/Generic/Glyphs.xaml
/Xceed.Wpf.Toolkit/Themes/Generic/Glyphs.xaml
Aero.NormalColor.xaml
/Xceed.Wpf.Toolkit/Themes/Aero.NormalColor.xaml
/Xceed.Wpf.Toolkit/Themes/Aero.NormalColor.xaml
Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/Themes/Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/Themes/Aero2.NormalColor.xaml
classic.xaml
/Xceed.Wpf.Toolkit/Themes/classic.xaml
/Xceed.Wpf.Toolkit/Themes/classic.xaml
Generic.xaml
/Xceed.Wpf.Toolkit/Themes/Generic.xaml
/Xceed.Wpf.Toolkit/Themes/Generic.xaml
luna.homestead.xaml
/Xceed.Wpf.Toolkit/Themes/luna.homestead.xaml
/Xceed.Wpf.Toolkit/Themes/luna.homestead.xaml
luna.metallic.xaml
/Xceed.Wpf.Toolkit/Themes/luna.metallic.xaml
/Xceed.Wpf.Toolkit/Themes/luna.metallic.xaml
luna.normalcolor.xaml
/Xceed.Wpf.Toolkit/Themes/luna.normalcolor.xaml
/Xceed.Wpf.Toolkit/Themes/luna.normalcolor.xaml
royale.normalcolor.xaml
/Xceed.Wpf.Toolkit/Themes/royale.normalcolor.xaml
/Xceed.Wpf.Toolkit/Themes/royale.normalcolor.xaml
DateElement.cs
/Xceed.Wpf.Toolkit/TimelinePanel/Implementation/DateElement.cs
/Xceed.Wpf.Toolkit/TimelinePanel/Implementation/DateElement.cs
OverlapBehavior.cs
/Xceed.Wpf.Toolkit/TimelinePanel/Implementation/OverlapBehavior.cs
/Xceed.Wpf.Toolkit/TimelinePanel/Implementation/OverlapBehavior.cs
TimelinePanel.cs
/Xceed.Wpf.Toolkit/TimelinePanel/Implementation/TimelinePanel.cs
/Xceed.Wpf.Toolkit/TimelinePanel/Implementation/TimelinePanel.cs
TimeItem.cs
/Xceed.Wpf.Toolkit/TimePicker/Implementation/TimeItem.cs
/Xceed.Wpf.Toolkit/TimePicker/Implementation/TimeItem.cs
TimePicker.cs
/Xceed.Wpf.Toolkit/TimePicker/Implementation/TimePicker.cs
/Xceed.Wpf.Toolkit/TimePicker/Implementation/TimePicker.cs
Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/TimePicker/Themes/Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/TimePicker/Themes/Aero2.NormalColor.xaml
Generic.xaml
/Xceed.Wpf.Toolkit/TimePicker/Themes/Generic.xaml
/Xceed.Wpf.Toolkit/TimePicker/Themes/Generic.xaml
TimeSpanUpDown.cs
/Xceed.Wpf.Toolkit/TimeSpanUpDown/Implementation/TimeSpanUpDown.cs
/Xceed.Wpf.Toolkit/TimeSpanUpDown/Implementation/TimeSpanUpDown.cs
Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/TimeSpanUpDown/Themes/Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/TimeSpanUpDown/Themes/Aero2.NormalColor.xaml
Generic.xaml
/Xceed.Wpf.Toolkit/TimeSpanUpDown/Themes/Generic.xaml
/Xceed.Wpf.Toolkit/TimeSpanUpDown/Themes/Generic.xaml
WatermarkComboBox.cs
/Xceed.Wpf.Toolkit/WatermarkComboBox/Implementation/WatermarkComboBox.cs
/Xceed.Wpf.Toolkit/WatermarkComboBox/Implementation/WatermarkComboBox.cs
Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/WatermarkComboBox/Themes/Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/WatermarkComboBox/Themes/Aero2.NormalColor.xaml
Generic.xaml
/Xceed.Wpf.Toolkit/WatermarkComboBox/Themes/Generic.xaml
/Xceed.Wpf.Toolkit/WatermarkComboBox/Themes/Generic.xaml
WatermarkTextBox.cs
/Xceed.Wpf.Toolkit/WatermarkTextBox/Implementation/WatermarkTextBox.cs
/Xceed.Wpf.Toolkit/WatermarkTextBox/Implementation/WatermarkTextBox.cs
Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/WatermarkTextBox/Themes/Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/WatermarkTextBox/Themes/Aero2.NormalColor.xaml
Generic.xaml
/Xceed.Wpf.Toolkit/WatermarkTextBox/Themes/Generic.xaml
/Xceed.Wpf.Toolkit/WatermarkTextBox/Themes/Generic.xaml
Wizard.cs
/Xceed.Wpf.Toolkit/Wizard/Implementation/Wizard.cs
/Xceed.Wpf.Toolkit/Wizard/Implementation/Wizard.cs
WizardCommands.cs
/Xceed.Wpf.Toolkit/Wizard/Implementation/WizardCommands.cs
/Xceed.Wpf.Toolkit/Wizard/Implementation/WizardCommands.cs
WizardPage.cs
/Xceed.Wpf.Toolkit/Wizard/Implementation/WizardPage.cs
/Xceed.Wpf.Toolkit/Wizard/Implementation/WizardPage.cs
WizardPageButtonVisibility.cs
/Xceed.Wpf.Toolkit/Wizard/Implementation/WizardPageButtonVisibility.cs
/Xceed.Wpf.Toolkit/Wizard/Implementation/WizardPageButtonVisibility.cs
WizardPageType.cs
/Xceed.Wpf.Toolkit/Wizard/Implementation/WizardPageType.cs
/Xceed.Wpf.Toolkit/Wizard/Implementation/WizardPageType.cs
Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/Wizard/Themes/Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/Wizard/Themes/Aero2.NormalColor.xaml
Generic.xaml
/Xceed.Wpf.Toolkit/Wizard/Themes/Generic.xaml
/Xceed.Wpf.Toolkit/Wizard/Themes/Generic.xaml
Zoom.cur
/Xceed.Wpf.Toolkit/Zoombox/Resources/Zoom.cur
/Xceed.Wpf.Toolkit/Zoombox/Resources/Zoom.cur
ZoomRelative.cur
/Xceed.Wpf.Toolkit/Zoombox/Resources/ZoomRelative.cur
/Xceed.Wpf.Toolkit/Zoombox/Resources/ZoomRelative.cur
Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/Zoombox/Themes/Aero2.NormalColor.xaml
/Xceed.Wpf.Toolkit/Zoombox/Themes/Aero2.NormalColor.xaml
Generic.xaml
/Xceed.Wpf.Toolkit/Zoombox/Themes/Generic.xaml
/Xceed.Wpf.Toolkit/Zoombox/Themes/Generic.xaml
Zoombox.cs
/Xceed.Wpf.Toolkit/Zoombox/Zoombox.cs
/Xceed.Wpf.Toolkit/Zoombox/Zoombox.cs
ZoomboxCursors.cs
/Xceed.Wpf.Toolkit/Zoombox/ZoomboxCursors.cs
/Xceed.Wpf.Toolkit/Zoombox/ZoomboxCursors.cs
ZoomboxView.cs
/Xceed.Wpf.Toolkit/Zoombox/ZoomboxView.cs
/Xceed.Wpf.Toolkit/Zoombox/ZoomboxView.cs
ZoomboxViewChangedEventArgs.cs
/Xceed.Wpf.Toolkit/Zoombox/ZoomboxViewChangedEventArgs.cs
/Xceed.Wpf.Toolkit/Zoombox/ZoomboxViewChangedEventArgs.cs
ZoomboxViewChangedEventHandler.cs
/Xceed.Wpf.Toolkit/Zoombox/ZoomboxViewChangedEventHandler.cs
/Xceed.Wpf.Toolkit/Zoombox/ZoomboxViewChangedEventHandler.cs
ZoomboxViewConverter.cs
/Xceed.Wpf.Toolkit/Zoombox/ZoomboxViewConverter.cs
/Xceed.Wpf.Toolkit/Zoombox/ZoomboxViewConverter.cs
ZoomboxViewException.cs
/Xceed.Wpf.Toolkit/Zoombox/ZoomboxViewException.cs
/Xceed.Wpf.Toolkit/Zoombox/ZoomboxViewException.cs
ZoomboxViewFinderDisplay.cs
/Xceed.Wpf.Toolkit/Zoombox/ZoomboxViewFinderDisplay.cs
/Xceed.Wpf.Toolkit/Zoombox/ZoomboxViewFinderDisplay.cs
ZoomboxViewKind.cs
/Xceed.Wpf.Toolkit/Zoombox/ZoomboxViewKind.cs
/Xceed.Wpf.Toolkit/Zoombox/ZoomboxViewKind.cs
ZoomboxViewStack.cs
/Xceed.Wpf.Toolkit/Zoombox/ZoomboxViewStack.cs
/Xceed.Wpf.Toolkit/Zoombox/ZoomboxViewStack.cs
ZoomboxViewStackMode.cs
/Xceed.Wpf.Toolkit/Zoombox/ZoomboxViewStackMode.cs
/Xceed.Wpf.Toolkit/Zoombox/ZoomboxViewStackMode.cs
ZoomboxZoomOn.cs
/Xceed.Wpf.Toolkit/Zoombox/ZoomboxZoomOn.cs
/Xceed.Wpf.Toolkit/Zoombox/ZoomboxZoomOn.cs
AssemblyVersionInfo.cs
/Xceed.Wpf.Toolkit/AssemblyVersionInfo.cs
/Xceed.Wpf.Toolkit/AssemblyVersionInfo.cs
AssemblyVersionInfoCommon.cs
/Xceed.Wpf.Toolkit/AssemblyVersionInfoCommon.cs
/Xceed.Wpf.Toolkit/AssemblyVersionInfoCommon.cs
sn.snk
/Xceed.Wpf.Toolkit/sn.snk
/Xceed.Wpf.Toolkit/sn.snk
VisualStates.cs
/Xceed.Wpf.Toolkit/VisualStates.cs
/Xceed.Wpf.Toolkit/VisualStates.cs
Xceed.Wpf.Toolkit.csproj
/Xceed.Wpf.Toolkit/Xceed.Wpf.Toolkit.csproj
/Xceed.Wpf.Toolkit/Xceed.Wpf.Toolkit.csproj
.gitignore
/.gitignore
/.gitignore
BExplorer.sln
/BExplorer.sln
/BExplorer.sln