├── .gitignore ├── LICENSE ├── README.md ├── docs ├── column_custom_sorting_str_logical_comparer.gif ├── column_custom_sorting_str_logical_comparer.png ├── column_without_custom_sorting.gif └── column_without_custom_sorting.png └── src ├── Demo ├── App.config ├── App.xaml ├── App.xaml.cs ├── Classes │ └── SimpleItem.cs ├── Demo.csproj ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── ViewModels │ └── MainWindowViewModel.cs ├── WpfExtensions.sln └── WpfExtensions ├── AttachedProperties └── DataGridHelpers.cs ├── Comparers └── StrLogicalComparer.cs └── WpfExtensions.csproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhkin11/wpf-extensions/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhkin11/wpf-extensions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhkin11/wpf-extensions/HEAD/README.md -------------------------------------------------------------------------------- /docs/column_custom_sorting_str_logical_comparer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhkin11/wpf-extensions/HEAD/docs/column_custom_sorting_str_logical_comparer.gif -------------------------------------------------------------------------------- /docs/column_custom_sorting_str_logical_comparer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhkin11/wpf-extensions/HEAD/docs/column_custom_sorting_str_logical_comparer.png -------------------------------------------------------------------------------- /docs/column_without_custom_sorting.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhkin11/wpf-extensions/HEAD/docs/column_without_custom_sorting.gif -------------------------------------------------------------------------------- /docs/column_without_custom_sorting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhkin11/wpf-extensions/HEAD/docs/column_without_custom_sorting.png -------------------------------------------------------------------------------- /src/Demo/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhkin11/wpf-extensions/HEAD/src/Demo/App.config -------------------------------------------------------------------------------- /src/Demo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhkin11/wpf-extensions/HEAD/src/Demo/App.xaml -------------------------------------------------------------------------------- /src/Demo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhkin11/wpf-extensions/HEAD/src/Demo/App.xaml.cs -------------------------------------------------------------------------------- /src/Demo/Classes/SimpleItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhkin11/wpf-extensions/HEAD/src/Demo/Classes/SimpleItem.cs -------------------------------------------------------------------------------- /src/Demo/Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhkin11/wpf-extensions/HEAD/src/Demo/Demo.csproj -------------------------------------------------------------------------------- /src/Demo/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhkin11/wpf-extensions/HEAD/src/Demo/MainWindow.xaml -------------------------------------------------------------------------------- /src/Demo/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhkin11/wpf-extensions/HEAD/src/Demo/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/Demo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhkin11/wpf-extensions/HEAD/src/Demo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Demo/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhkin11/wpf-extensions/HEAD/src/Demo/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Demo/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhkin11/wpf-extensions/HEAD/src/Demo/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Demo/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhkin11/wpf-extensions/HEAD/src/Demo/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/Demo/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhkin11/wpf-extensions/HEAD/src/Demo/Properties/Settings.settings -------------------------------------------------------------------------------- /src/Demo/ViewModels/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhkin11/wpf-extensions/HEAD/src/Demo/ViewModels/MainWindowViewModel.cs -------------------------------------------------------------------------------- /src/WpfExtensions.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhkin11/wpf-extensions/HEAD/src/WpfExtensions.sln -------------------------------------------------------------------------------- /src/WpfExtensions/AttachedProperties/DataGridHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhkin11/wpf-extensions/HEAD/src/WpfExtensions/AttachedProperties/DataGridHelpers.cs -------------------------------------------------------------------------------- /src/WpfExtensions/Comparers/StrLogicalComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhkin11/wpf-extensions/HEAD/src/WpfExtensions/Comparers/StrLogicalComparer.cs -------------------------------------------------------------------------------- /src/WpfExtensions/WpfExtensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhkin11/wpf-extensions/HEAD/src/WpfExtensions/WpfExtensions.csproj --------------------------------------------------------------------------------