├── .gitignore ├── README.md ├── Util.Controls.V1.0 ├── System.Utility │ ├── Cache │ │ ├── CacheManager.cs │ │ ├── CacheTime.cs │ │ ├── ICache.cs │ │ └── Impl │ │ │ ├── BaseCache.cs │ │ │ └── NetCache.cs │ ├── Common │ │ ├── Constants.cs │ │ ├── Enums.cs │ │ └── Guard.cs │ ├── Data │ │ ├── BaseQuery.cs │ │ ├── DBTypeFactory.cs │ │ ├── Nhibernate │ │ │ ├── HttpSessionManager.cs │ │ │ ├── ISessionManager.cs │ │ │ ├── SessionManagerFactoryBase.cs │ │ │ └── ThreadSessionManager.cs │ │ ├── PersistableServiceBase.cs │ │ ├── ServiceBase.cs │ │ ├── Sqlite │ │ │ ├── SQLiteString.cs │ │ │ ├── SqlParameter.cs │ │ │ └── SqliteContext.cs │ │ ├── SqliteRecovery │ │ │ ├── SqliteCoreDll.cs │ │ │ ├── SqliteRecoveryHelper.cs │ │ │ └── SqliteReturn.cs │ │ └── Validation │ │ │ ├── Attributes │ │ │ ├── LengthValidatorAttribute.cs │ │ │ ├── NumericValidatorAttribute.cs │ │ │ ├── RequireValidatorAttribute.cs │ │ │ └── ValidatorAttribute.cs │ │ │ ├── IValidateable.cs │ │ │ ├── ValidateableBase.cs │ │ │ ├── ValidationManager.cs │ │ │ └── Validators │ │ │ ├── LengthValidator.cs │ │ │ ├── NumericValidator.cs │ │ │ ├── RequireValidator │ │ │ ├── DatetimeRequireValidator.cs │ │ │ ├── RequireValidator.cs │ │ │ ├── RequireValidatorFactory.cs │ │ │ └── StringRequireValidator.cs │ │ │ └── Validator.cs │ ├── Dynamic │ │ ├── DynamicConvert.cs │ │ ├── DynamicX.cs │ │ ├── GetPropertyBinder.cs │ │ ├── IDynamicEnable.cs │ │ └── SetPropertyBinder.cs │ ├── Emit │ │ └── EmitHelper.cs │ ├── Extension │ │ ├── SerializableDictionary.cs │ │ ├── TypeExtension.Boolean.cs │ │ ├── TypeExtension.Data.cs │ │ ├── TypeExtension.DateTime.cs │ │ ├── TypeExtension.Decimal.cs │ │ ├── TypeExtension.Dictionary.cs │ │ ├── TypeExtension.Enum.cs │ │ ├── TypeExtension.Exception.cs │ │ ├── TypeExtension.IEnumerable.cs │ │ ├── TypeExtension.IQueryable.cs │ │ ├── TypeExtension.Int.cs │ │ ├── TypeExtension.Intptr.cs │ │ ├── TypeExtension.Object.cs │ │ ├── TypeExtension.Reflection.cs │ │ ├── TypeExtension.Stream.cs │ │ ├── TypeExtension.String.cs │ │ ├── TypeExtension.StringBuilder.cs │ │ ├── TypeExtension.Version.cs │ │ ├── TypeExtension.Xml.cs │ │ ├── TypeExtension.byte.cs │ │ ├── TypeExtension.cs │ │ └── TypeExtension.sth.cs │ ├── Helper │ │ ├── Color.cs │ │ ├── Config.cs │ │ ├── Cryptography.cs │ │ ├── DataVisualAnalysis.cs │ │ ├── File.cs │ │ ├── Format.cs │ │ ├── HttpUtils.cs │ │ ├── Image.cs │ │ ├── LongPathFileOperator.cs │ │ ├── QuotedPrintableHelper.cs │ │ ├── Random.cs │ │ ├── Reflection.cs │ │ ├── RegistryHelper.cs │ │ ├── Serialize.cs │ │ ├── Sys.cs │ │ ├── Test.cs │ │ └── TimeOut.cs │ ├── Ioc │ │ ├── IContainer.cs │ │ ├── Ioc.cs │ │ └── SpringContainer.cs │ ├── Logger │ │ ├── LogHelper.cs │ │ └── SimpleLogger │ │ │ └── SimpleLogger.cs │ ├── Misc │ │ ├── AbstractAsyncResult.cs │ │ ├── ConsoleAsyncResult.cs │ │ ├── ConsoleWriter.cs │ │ ├── DefaultAsyncResult.cs │ │ ├── Executer.cs │ │ ├── IAsyncResult.cs │ │ ├── IgnoreCaseStringComparer.cs │ │ └── SingleThread.cs │ ├── Patterns │ │ ├── FlyweightBase.cs │ │ ├── ISimpleFactory.cs │ │ ├── Obsever.cs │ │ └── Singleton.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── DefaultErrorMessages.resx │ │ └── DefaultErrorMessages1.Designer.cs │ ├── Security │ │ ├── Identity.cs │ │ ├── Principal.cs │ │ ├── UserInfo.cs │ │ ├── WebSecurityService.cs │ │ └── WinSecurityService.cs │ ├── System.Utility.csproj │ ├── System.Utility.csproj.vspscc │ └── Win32 │ │ ├── Enums.cs │ │ ├── IniConfig.cs │ │ ├── Struct.cs │ │ ├── WMI.cs │ │ └── Win32.cs ├── Util.Controls.WPFTest │ ├── App.xaml │ ├── App.xaml.cs │ ├── Images │ │ ├── logom.png │ │ ├── qq.png │ │ ├── qq1.png │ │ └── qq2.png │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Page │ │ ├── Page_Button.xaml │ │ ├── Page_Button.xaml.cs │ │ ├── Page_ComboBox_Date.xaml │ │ ├── Page_ComboBox_Date.xaml.cs │ │ ├── Page_DataGrid.xaml │ │ ├── Page_DataGrid.xaml.cs │ │ ├── Page_Image.xaml │ │ ├── Page_Image.xaml.cs │ │ ├── Page_ImageViewer.xaml │ │ ├── Page_ImageViewer.xaml.cs │ │ ├── Page_ListBox_MultiCom.xaml │ │ ├── Page_ListBox_MultiCom.xaml.cs │ │ ├── Page_ListView.xaml │ │ ├── Page_ListView.xaml.cs │ │ ├── Page_MVVM.xaml │ │ ├── Page_MVVM.xaml.cs │ │ ├── Page_MultCase.xaml │ │ ├── Page_MultCase.xaml.cs │ │ ├── Page_TabControl.xaml │ │ ├── Page_TabControl.xaml.cs │ │ ├── Page_Test.xaml │ │ ├── Page_Test.xaml.cs │ │ ├── Page_TextBox.xaml │ │ ├── Page_TextBox.xaml.cs │ │ ├── Page_TreeView.xaml │ │ ├── Page_TreeView.xaml.cs │ │ ├── Page_Waiting.xaml │ │ ├── Page_Waiting.xaml.cs │ │ ├── Page_Webbrowser.xaml │ │ └── Page_Webbrowser.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Style │ │ ├── Colors.xaml │ │ └── Default.xaml │ ├── Util.Controls.WPFTest.csproj │ ├── XLY.Framework.WPFTest.csproj.vspscc │ ├── app.config │ ├── bin │ │ └── Debug │ │ │ ├── Images │ │ │ ├── logom.png │ │ │ ├── qq.png │ │ │ ├── qq1.png │ │ │ └── qq2.png │ │ │ ├── Microsoft.Expression.Drawing.dll │ │ │ ├── Microsoft.Expression.Drawing.xml │ │ │ ├── Microsoft.Expression.Effects.dll │ │ │ ├── Microsoft.Expression.Effects.xml │ │ │ ├── Microsoft.Expression.Interactions.dll │ │ │ ├── Microsoft.Windows.Shell.dll │ │ │ ├── System.Utility.dll │ │ │ ├── System.Windows.Interactivity.dll │ │ │ ├── Util.Controls.WPFTest.exe │ │ │ ├── Util.Controls.WPFTest.exe.config │ │ │ ├── Util.Controls.WPFTest.pdb │ │ │ ├── Util.Controls.WPFTest.vshost.exe │ │ │ ├── Util.Controls.WPFTest.vshost.exe.config │ │ │ ├── Util.Controls.dll │ │ │ └── Util.Controls.pdb │ ├── doc │ │ ├── Remark.txt │ │ ├── demo.css │ │ ├── demo.html │ │ ├── iconfont.css │ │ └── iconfont.ttf │ ├── obj │ │ └── x86 │ │ │ ├── Debug │ │ │ ├── App.baml │ │ │ ├── App.g.cs │ │ │ ├── App.g.i.cs │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── GeneratedInternalTypeHelper.g.cs │ │ │ ├── GeneratedInternalTypeHelper.g.i.cs │ │ │ ├── MainWindow.baml │ │ │ ├── MainWindow.g.cs │ │ │ ├── MainWindow.g.i.cs │ │ │ ├── Page │ │ │ │ ├── Page_Button.baml │ │ │ │ ├── Page_Button.g.cs │ │ │ │ ├── Page_Button.g.i.cs │ │ │ │ ├── Page_ComboBox_Date.baml │ │ │ │ ├── Page_ComboBox_Date.g.cs │ │ │ │ ├── Page_ComboBox_Date.g.i.cs │ │ │ │ ├── Page_DataGrid.baml │ │ │ │ ├── Page_DataGrid.g.cs │ │ │ │ ├── Page_DataGrid.g.i.cs │ │ │ │ ├── Page_Image.baml │ │ │ │ ├── Page_Image.g.cs │ │ │ │ ├── Page_Image.g.i.cs │ │ │ │ ├── Page_ImageViewer.baml │ │ │ │ ├── Page_ImageViewer.g.cs │ │ │ │ ├── Page_ImageViewer.g.i.cs │ │ │ │ ├── Page_ListBox_MultiCom.baml │ │ │ │ ├── Page_ListBox_MultiCom.g.cs │ │ │ │ ├── Page_ListBox_MultiCom.g.i.cs │ │ │ │ ├── Page_ListView.baml │ │ │ │ ├── Page_ListView.g.cs │ │ │ │ ├── Page_ListView.g.i.cs │ │ │ │ ├── Page_MVVM.baml │ │ │ │ ├── Page_MVVM.g.cs │ │ │ │ ├── Page_MVVM.g.i.cs │ │ │ │ ├── Page_MultCase.baml │ │ │ │ ├── Page_MultCase.g.cs │ │ │ │ ├── Page_MultCase.g.i.cs │ │ │ │ ├── Page_TabControl.baml │ │ │ │ ├── Page_TabControl.g.cs │ │ │ │ ├── Page_TabControl.g.i.cs │ │ │ │ ├── Page_Test.baml │ │ │ │ ├── Page_Test.g.cs │ │ │ │ ├── Page_Test.g.i.cs │ │ │ │ ├── Page_TextBox.baml │ │ │ │ ├── Page_TextBox.g.cs │ │ │ │ ├── Page_TextBox.g.i.cs │ │ │ │ ├── Page_TreeView.baml │ │ │ │ ├── Page_TreeView.g.cs │ │ │ │ ├── Page_TreeView.g.i.cs │ │ │ │ ├── Page_Waiting.baml │ │ │ │ ├── Page_Waiting.g.cs │ │ │ │ ├── Page_Waiting.g.i.cs │ │ │ │ ├── Page_Webbrowser.baml │ │ │ │ ├── Page_Webbrowser.g.cs │ │ │ │ └── Page_Webbrowser.g.i.cs │ │ │ ├── Style │ │ │ │ ├── Colors.baml │ │ │ │ └── Default.baml │ │ │ ├── TempPE │ │ │ │ └── Properties.Resources.Designer.cs.dll │ │ │ ├── Util.Controls.WPFTest.Properties.Resources.resources │ │ │ ├── Util.Controls.WPFTest.csproj.FileListAbsolute.txt │ │ │ ├── Util.Controls.WPFTest.csproj.GenerateResource.Cache │ │ │ ├── Util.Controls.WPFTest.csprojResolveAssemblyReference.cache │ │ │ ├── Util.Controls.WPFTest.exe │ │ │ ├── Util.Controls.WPFTest.g.resources │ │ │ ├── Util.Controls.WPFTest.pdb │ │ │ ├── Util.Controls.WPFTest_Content.g.cs │ │ │ ├── Util.Controls.WPFTest_Content.g.i.cs │ │ │ ├── Util.Controls.WPFTest_MarkupCompile.cache │ │ │ ├── Util.Controls.WPFTest_MarkupCompile.i.cache │ │ │ ├── Util.Controls.WPFTest_MarkupCompile.i.lref │ │ │ ├── Util.Controls.WPFTest_MarkupCompile.lref │ │ │ ├── XLY.Framework.WPFTest.Properties.Resources.resources │ │ │ ├── XLY.Framework.WPFTest.csproj.FileListAbsolute.txt │ │ │ ├── XLY.Framework.WPFTest.csproj.GenerateResource.Cache │ │ │ ├── XLY.Framework.WPFTest.csprojResolveAssemblyReference.cache │ │ │ ├── XLY.Framework.WPFTest.exe │ │ │ ├── XLY.Framework.WPFTest.g.resources │ │ │ ├── XLY.Framework.WPFTest.pdb │ │ │ ├── XLY.Framework.WPFTest_Content.g.cs │ │ │ ├── XLY.Framework.WPFTest_Content.g.i.cs │ │ │ ├── XLY.Framework.WPFTest_MarkupCompile.cache │ │ │ ├── XLY.Framework.WPFTest_MarkupCompile.i.cache │ │ │ ├── XLY.Framework.WPFTest_MarkupCompile.lref │ │ │ ├── control │ │ │ │ └── MultCaseTabControl.g.i.cs │ │ │ └── old │ │ │ │ ├── LocalImageViewer.baml │ │ │ │ ├── LocalImageViewer.g.cs │ │ │ │ ├── LocalImageViewer.g.i.cs │ │ │ │ ├── WebImageViewer.baml │ │ │ │ ├── WebImageViewer.g.cs │ │ │ │ └── WebImageViewer.g.i.cs │ │ │ └── Release │ │ │ ├── App.baml │ │ │ ├── App.g.cs │ │ │ ├── App.g.i.cs │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── GeneratedInternalTypeHelper.g.cs │ │ │ ├── GeneratedInternalTypeHelper.g.i.cs │ │ │ ├── MainWindow.baml │ │ │ ├── MainWindow.g.cs │ │ │ ├── MainWindow.g.i.cs │ │ │ ├── Page │ │ │ ├── Page_Button.baml │ │ │ ├── Page_Button.g.cs │ │ │ ├── Page_Button.g.i.cs │ │ │ ├── Page_ComboBox_Date.baml │ │ │ ├── Page_ComboBox_Date.g.cs │ │ │ ├── Page_ComboBox_Date.g.i.cs │ │ │ ├── Page_DataGrid.baml │ │ │ ├── Page_DataGrid.g.cs │ │ │ ├── Page_DataGrid.g.i.cs │ │ │ ├── Page_Image.baml │ │ │ ├── Page_Image.g.cs │ │ │ ├── Page_Image.g.i.cs │ │ │ ├── Page_ImageViewer.baml │ │ │ ├── Page_ImageViewer.g.cs │ │ │ ├── Page_ImageViewer.g.i.cs │ │ │ ├── Page_ListBox_MultiCom.baml │ │ │ ├── Page_ListBox_MultiCom.g.cs │ │ │ ├── Page_ListBox_MultiCom.g.i.cs │ │ │ ├── Page_ListView.baml │ │ │ ├── Page_ListView.g.cs │ │ │ ├── Page_ListView.g.i.cs │ │ │ ├── Page_MVVM.baml │ │ │ ├── Page_MVVM.g.cs │ │ │ ├── Page_MVVM.g.i.cs │ │ │ ├── Page_MultCase.baml │ │ │ ├── Page_MultCase.g.cs │ │ │ ├── Page_MultCase.g.i.cs │ │ │ ├── Page_TabControl.baml │ │ │ ├── Page_TabControl.g.cs │ │ │ ├── Page_TabControl.g.i.cs │ │ │ ├── Page_Test.baml │ │ │ ├── Page_Test.g.cs │ │ │ ├── Page_Test.g.i.cs │ │ │ ├── Page_TextBox.baml │ │ │ ├── Page_TextBox.g.cs │ │ │ ├── Page_TextBox.g.i.cs │ │ │ ├── Page_TreeView.baml │ │ │ ├── Page_TreeView.g.cs │ │ │ ├── Page_TreeView.g.i.cs │ │ │ ├── Page_Waiting.baml │ │ │ ├── Page_Waiting.g.cs │ │ │ ├── Page_Waiting.g.i.cs │ │ │ ├── Page_Webbrowser.baml │ │ │ ├── Page_Webbrowser.g.cs │ │ │ └── Page_Webbrowser.g.i.cs │ │ │ ├── Style │ │ │ ├── Colors.baml │ │ │ └── Default.baml │ │ │ ├── TempPE │ │ │ └── Properties.Resources.Designer.cs.dll │ │ │ ├── XLY.Framework.WPFTest.Properties.Resources.resources │ │ │ ├── XLY.Framework.WPFTest.csproj.FileListAbsolute.txt │ │ │ ├── XLY.Framework.WPFTest.csproj.GenerateResource.Cache │ │ │ ├── XLY.Framework.WPFTest.csprojResolveAssemblyReference.cache │ │ │ ├── XLY.Framework.WPFTest.exe │ │ │ ├── XLY.Framework.WPFTest.g.resources │ │ │ ├── XLY.Framework.WPFTest.pdb │ │ │ ├── XLY.Framework.WPFTest_Content.g.cs │ │ │ ├── XLY.Framework.WPFTest_Content.g.i.cs │ │ │ ├── XLY.Framework.WPFTest_MarkupCompile.cache │ │ │ ├── XLY.Framework.WPFTest_MarkupCompile.i.cache │ │ │ ├── XLY.Framework.WPFTest_MarkupCompile.i.lref │ │ │ ├── XLY.Framework.WPFTest_MarkupCompile.lref │ │ │ ├── control │ │ │ ├── MultCaseTabControl.baml │ │ │ ├── MultCaseTabControl.g.cs │ │ │ └── MultCaseTabControl.g.i.cs │ │ │ └── old │ │ │ ├── LocalImageViewer.baml │ │ │ ├── LocalImageViewer.g.cs │ │ │ ├── LocalImageViewer.g.i.cs │ │ │ ├── WebImageViewer.baml │ │ │ ├── WebImageViewer.g.cs │ │ │ └── WebImageViewer.g.i.cs │ └── old │ │ ├── LocalImageViewer.xaml │ │ ├── LocalImageViewer.xaml.cs │ │ ├── WebImageViewer.xaml │ │ └── WebImageViewer.xaml.cs ├── Util.Controls.sln ├── Util.Controls.v12.suo ├── Util.Controls │ ├── Control │ │ ├── AnimatedGIF.cs │ │ ├── BulletCheckBox.xaml │ │ ├── BulletCheckBox.xaml.cs │ │ ├── BusyBox.xaml │ │ ├── BusyBox.xaml.cs │ │ ├── FButton.xaml │ │ ├── FButton.xaml.cs │ │ ├── FImage.xaml │ │ ├── FImage.xaml.cs │ │ ├── HighTextBlock.xaml │ │ ├── HighTextBlock.xaml.cs │ │ ├── MessageBoxX.xaml │ │ ├── MessageBoxX.xaml.cs │ │ ├── MultiComboBox.xaml │ │ ├── MultiComboBox.xaml.cs │ │ ├── ProgressRing.cs │ │ ├── ProgressRing.xaml │ │ ├── ThumbnailImage │ │ │ ├── EnumThumbnail.cs │ │ │ ├── IThumbnailProvider.cs │ │ │ ├── ImageThumbnailProvider.cs │ │ │ ├── ThumbnailImage.cs │ │ │ ├── ThumbnailProviderFactory.cs │ │ │ ├── VedioThumbnailProvider.cs │ │ │ └── WebImageThumbnailProvider.cs │ │ ├── VirtualizingWrapPanel.cs │ │ ├── WaitingBox.xaml │ │ ├── WaitingBox.xaml.cs │ │ ├── WindowBase.xaml │ │ └── WindowBase.xaml.cs │ ├── Converter │ │ ├── BackgroundToForegroundConverter.cs │ │ ├── Converters.cs │ │ ├── PercentToAngleConverter.cs │ │ ├── ThicknessToDoubleConverter.cs │ │ ├── TreeViewMarginConverter.cs │ │ └── TrueToFalseConverter.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources │ │ ├── iconfont.ttf │ │ ├── logo.ico │ │ └── logo.png │ ├── Style │ │ ├── Colors.xaml │ │ ├── Global.xaml │ │ ├── Style.xaml │ │ └── Themes │ │ │ ├── Calendar.xaml │ │ │ ├── CheckBox.xaml │ │ │ ├── ComboBox.xaml │ │ │ ├── DataGrid.xaml │ │ │ ├── DatePicker.xaml │ │ │ ├── FIcon.xaml │ │ │ ├── ListBox.xaml │ │ │ ├── ListView.xaml │ │ │ ├── LoopProcessBar.xaml │ │ │ ├── Menu.xaml │ │ │ ├── PasswordBox.xaml │ │ │ ├── ProgressBar.xaml │ │ │ ├── RadioButton.xaml │ │ │ ├── ScrollViewer.xaml │ │ │ ├── Separator.xaml │ │ │ ├── Share.xaml │ │ │ ├── TabControl.xaml │ │ │ ├── TextBox.xaml │ │ │ ├── ToggleButton.xaml │ │ │ └── TreeView.xaml │ ├── Themes │ │ └── Generic.xaml │ ├── Util.Controls.csproj │ ├── Util.Controls.v12.suo │ ├── Win32 │ │ ├── ChangeWindowSize.cs │ │ ├── HitTest.cs │ │ └── NativeMethods.cs │ ├── XLY.Framework.Controls.csproj.vspscc │ ├── usister.txt │ └── {Core} │ │ ├── Common │ │ ├── BaseNotifyPropertyChanged.cs │ │ ├── ConsoleAsynNotify.cs │ │ ├── DefaultAsynNotify.cs │ │ ├── Exceptions.cs │ │ ├── FileAsynNotify.cs │ │ └── IAsynNotify.cs │ │ ├── ControlAttachProperty.cs │ │ ├── ControlExtession.cs │ │ ├── Messenger.cs │ │ └── RelayCommand.cs └── lib │ ├── Microsoft.Expression.Controls.dll │ ├── Microsoft.Expression.Drawing.dll │ ├── Microsoft.Expression.Effects.dll │ ├── Microsoft.Expression.Interactions.dll │ ├── Microsoft.Expression.Prototyping.Interactivity.dll │ ├── Microsoft.Windows.Shell.dll │ ├── System.Utility.dll │ └── System.Windows.Interactivity.dll └── Util.Controls.V2.0 ├── .vs └── Util.Controls │ └── v15 │ ├── .suo │ └── sqlite3 │ └── storage.ide ├── README.md ├── TestDemo ├── App.config ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── TestDemo.csproj ├── Util.Controls.sln ├── Util.Controls ├── Behavior │ ├── DoubleClickCommandBehavior.cs │ └── RotateAnimationBehavior.cs ├── Control │ ├── AnimatedGIF.cs │ ├── BusyBox.xaml │ ├── BusyBox.xaml.cs │ ├── CustomVirtualizingStackPanel.cs │ ├── FImage.xaml │ ├── FImage.xaml.cs │ ├── HighTextBlock.xaml │ ├── HighTextBlock.xaml.cs │ ├── MessageBox.xaml │ ├── MessageBox.xaml.cs │ ├── MultiComboBox.xaml │ ├── MultiComboBox.xaml.cs │ ├── Panel │ │ └── FillWrapPanel.cs │ ├── PopMessageBox.xaml │ ├── PopMessageBox.xaml.cs │ ├── ProgressForValue.xaml │ ├── ProgressForValue.xaml.cs │ ├── ProgressRing.cs │ ├── ProgressRing.xaml │ ├── QuestionBox.xaml │ ├── QuestionBox.xaml.cs │ ├── RangeSlider.cs │ ├── TreeComboBox.xaml │ ├── TreeComboBox.xaml.cs │ ├── VerticalTextBlock.xaml │ ├── VerticalTextBlock.xaml.cs │ ├── VirtualizingWrapPanel.cs │ ├── WaitingBox.xaml │ ├── WaitingBox.xaml.cs │ ├── WindowBase.xaml │ └── WindowBase.xaml.cs ├── Converter │ ├── BackgroundToForegroundConverter.cs │ ├── BitmapImageSourceConverter.cs │ ├── BoolToTextConverter.cs │ ├── BoolToVisibilityConverter.cs │ ├── BrushToColorConverter.cs │ ├── BytesToImageSourceConverter.cs │ ├── CharacterWrapConverter.cs │ ├── ColorToBrushConverter.cs │ ├── ColorToStringConverter.cs │ ├── CountOrNullToCollapsedConverter.cs │ ├── CountOrNullToEnableConverter.cs │ ├── CountOrNullToVisibilityConverter.cs │ ├── DoubleToThicknessConverter.cs │ ├── EnabledToVisibilityConverter.cs │ ├── EnumDescriptionConverter.cs │ ├── EnumTypeToItemSourceConverter.cs │ ├── EnumsToItemSourceConverter.cs │ ├── NullAndVisibilityToCollapsedConverter.cs │ ├── NullToEnableConverter.cs │ ├── NullToVisibilityConverter.cs │ ├── ObjectTypeConverter.cs │ ├── PercentToAngleConverter.cs │ ├── PointConverter.cs │ ├── SizeConverter.cs │ ├── StringFormatConverter.cs │ ├── StringLengthToBoolConverter.cs │ ├── StringLengthToVisibilityConverter.cs │ ├── ThicknessToDoubleConverter.cs │ ├── TreeViewMarginConverter.cs │ ├── TrueToFalseConverter.cs │ ├── VisibilityToCollapsedConverter.cs │ ├── VisibilityToStarGridLengthConverter.cs │ └── XConverter.cs ├── CustomControl1.cs ├── Extension │ ├── ControlExtesion.cs │ ├── EnumBindingExtension.cs │ └── TreeViewExtension.cs ├── Global.xaml ├── Helper │ ├── ColorHelper.cs │ ├── ControlHelper.cs │ ├── FileHelper.cs │ ├── GUIThreadHelper.cs │ ├── ImageHelper.cs │ ├── ResourceHelper.cs │ └── Win32Helper.cs ├── Mvvm │ ├── BaseNotifyPropertyChanged.cs │ ├── Messenger.cs │ └── RelayCommand.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Style.xaml ├── Style │ ├── Button.xaml │ ├── Calendar.xaml │ ├── CheckBox.xaml │ ├── ComboBox.xaml │ ├── DataGrid.xaml │ ├── DatePicker.xaml │ ├── FIcon.xaml │ ├── ListBox.xaml │ ├── ListView.xaml │ ├── Menu.xaml │ ├── PasswordBox.xaml │ ├── ProgressBar.xaml │ ├── RadioButton.xaml │ ├── RangeSlider.xaml │ ├── ScrollViewer.xaml │ ├── Separator.xaml │ ├── Share.xaml │ ├── Slider.xaml │ ├── TabControl.xaml │ ├── TextBox.xaml │ ├── ToggleButton.xaml │ └── TreeView.xaml ├── Themes │ ├── Color.xaml │ ├── Generic.xaml │ └── iconfont.ttf ├── Util.Controls.csproj ├── readme.md └── {Core} │ ├── AsyncObservableCollection.cs │ ├── Cache │ ├── CacheManager.cs │ ├── CacheTime.cs │ ├── DefaultCache.cs │ └── ICache.cs │ ├── Constants.cs │ ├── Executer.cs │ ├── Guard.cs │ ├── IgnoreCaseStringComparer.cs │ ├── Singleton.cs │ ├── TypeExtension.Enum.cs │ ├── TypeExtension.Exception.cs │ ├── TypeExtension.IEnumerable.cs │ ├── TypeExtension.Int.cs │ ├── TypeExtension.Reflection.cs │ ├── TypeExtension.String.cs │ ├── TypeExtension.cs │ └── UtilProperty.cs └── plan.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/README.md -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Cache/CacheManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Cache/CacheManager.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Cache/CacheTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Cache/CacheTime.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Cache/ICache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Cache/ICache.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Cache/Impl/BaseCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Cache/Impl/BaseCache.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Cache/Impl/NetCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Cache/Impl/NetCache.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Common/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Common/Constants.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Common/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Common/Enums.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Common/Guard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Common/Guard.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Data/BaseQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Data/BaseQuery.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Data/DBTypeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Data/DBTypeFactory.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Data/Nhibernate/HttpSessionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Data/Nhibernate/HttpSessionManager.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Data/Nhibernate/ISessionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Data/Nhibernate/ISessionManager.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Data/Nhibernate/SessionManagerFactoryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Data/Nhibernate/SessionManagerFactoryBase.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Data/Nhibernate/ThreadSessionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Data/Nhibernate/ThreadSessionManager.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Data/PersistableServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Data/PersistableServiceBase.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Data/ServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Data/ServiceBase.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Data/Sqlite/SQLiteString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Data/Sqlite/SQLiteString.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Data/Sqlite/SqlParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Data/Sqlite/SqlParameter.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Data/Sqlite/SqliteContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Data/Sqlite/SqliteContext.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Data/SqliteRecovery/SqliteCoreDll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Data/SqliteRecovery/SqliteCoreDll.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Data/SqliteRecovery/SqliteRecoveryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Data/SqliteRecovery/SqliteRecoveryHelper.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Data/SqliteRecovery/SqliteReturn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Data/SqliteRecovery/SqliteReturn.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Data/Validation/Attributes/LengthValidatorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Data/Validation/Attributes/LengthValidatorAttribute.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Data/Validation/Attributes/NumericValidatorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Data/Validation/Attributes/NumericValidatorAttribute.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Data/Validation/Attributes/RequireValidatorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Data/Validation/Attributes/RequireValidatorAttribute.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Data/Validation/Attributes/ValidatorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Data/Validation/Attributes/ValidatorAttribute.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Data/Validation/IValidateable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Data/Validation/IValidateable.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Data/Validation/ValidateableBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Data/Validation/ValidateableBase.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Data/Validation/ValidationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Data/Validation/ValidationManager.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Data/Validation/Validators/LengthValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Data/Validation/Validators/LengthValidator.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Data/Validation/Validators/NumericValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Data/Validation/Validators/NumericValidator.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Data/Validation/Validators/RequireValidator/DatetimeRequireValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Data/Validation/Validators/RequireValidator/DatetimeRequireValidator.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Data/Validation/Validators/RequireValidator/RequireValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Data/Validation/Validators/RequireValidator/RequireValidator.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Data/Validation/Validators/RequireValidator/RequireValidatorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Data/Validation/Validators/RequireValidator/RequireValidatorFactory.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Data/Validation/Validators/RequireValidator/StringRequireValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Data/Validation/Validators/RequireValidator/StringRequireValidator.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Data/Validation/Validators/Validator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Data/Validation/Validators/Validator.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Dynamic/DynamicConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Dynamic/DynamicConvert.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Dynamic/DynamicX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Dynamic/DynamicX.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Dynamic/GetPropertyBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Dynamic/GetPropertyBinder.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Dynamic/IDynamicEnable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Dynamic/IDynamicEnable.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Dynamic/SetPropertyBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Dynamic/SetPropertyBinder.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Emit/EmitHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Emit/EmitHelper.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Extension/SerializableDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Extension/SerializableDictionary.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Extension/TypeExtension.Boolean.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Extension/TypeExtension.Boolean.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Extension/TypeExtension.Data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Extension/TypeExtension.Data.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Extension/TypeExtension.DateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Extension/TypeExtension.DateTime.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Extension/TypeExtension.Decimal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Extension/TypeExtension.Decimal.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Extension/TypeExtension.Dictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Extension/TypeExtension.Dictionary.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Extension/TypeExtension.Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Extension/TypeExtension.Enum.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Extension/TypeExtension.Exception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Extension/TypeExtension.Exception.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Extension/TypeExtension.IEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Extension/TypeExtension.IEnumerable.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Extension/TypeExtension.IQueryable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Extension/TypeExtension.IQueryable.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Extension/TypeExtension.Int.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Extension/TypeExtension.Int.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Extension/TypeExtension.Intptr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Extension/TypeExtension.Intptr.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Extension/TypeExtension.Object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Extension/TypeExtension.Object.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Extension/TypeExtension.Reflection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Extension/TypeExtension.Reflection.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Extension/TypeExtension.Stream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Extension/TypeExtension.Stream.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Extension/TypeExtension.String.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Extension/TypeExtension.String.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Extension/TypeExtension.StringBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Extension/TypeExtension.StringBuilder.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Extension/TypeExtension.Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Extension/TypeExtension.Version.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Extension/TypeExtension.Xml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Extension/TypeExtension.Xml.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Extension/TypeExtension.byte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Extension/TypeExtension.byte.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Extension/TypeExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Extension/TypeExtension.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Extension/TypeExtension.sth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Extension/TypeExtension.sth.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Helper/Color.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Helper/Color.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Helper/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Helper/Config.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Helper/Cryptography.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Helper/Cryptography.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Helper/DataVisualAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Helper/DataVisualAnalysis.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Helper/File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Helper/File.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Helper/Format.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Helper/Format.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Helper/HttpUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Helper/HttpUtils.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Helper/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Helper/Image.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Helper/LongPathFileOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Helper/LongPathFileOperator.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Helper/QuotedPrintableHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Helper/QuotedPrintableHelper.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Helper/Random.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Helper/Random.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Helper/Reflection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Helper/Reflection.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Helper/RegistryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Helper/RegistryHelper.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Helper/Serialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Helper/Serialize.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Helper/Sys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Helper/Sys.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Helper/Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Helper/Test.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Helper/TimeOut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Helper/TimeOut.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Ioc/IContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Ioc/IContainer.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Ioc/Ioc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Ioc/Ioc.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Ioc/SpringContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Ioc/SpringContainer.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Logger/LogHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Logger/LogHelper.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Logger/SimpleLogger/SimpleLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Logger/SimpleLogger/SimpleLogger.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Misc/AbstractAsyncResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Misc/AbstractAsyncResult.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Misc/ConsoleAsyncResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Misc/ConsoleAsyncResult.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Misc/ConsoleWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Misc/ConsoleWriter.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Misc/DefaultAsyncResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Misc/DefaultAsyncResult.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Misc/Executer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Misc/Executer.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Misc/IAsyncResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Misc/IAsyncResult.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Misc/IgnoreCaseStringComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Misc/IgnoreCaseStringComparer.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Misc/SingleThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Misc/SingleThread.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Patterns/FlyweightBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Patterns/FlyweightBase.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Patterns/ISimpleFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Patterns/ISimpleFactory.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Patterns/Obsever.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Patterns/Obsever.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Patterns/Singleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Patterns/Singleton.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Resources/DefaultErrorMessages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Resources/DefaultErrorMessages.resx -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Resources/DefaultErrorMessages1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Resources/DefaultErrorMessages1.Designer.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Security/Identity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Security/Identity.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Security/Principal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Security/Principal.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Security/UserInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Security/UserInfo.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Security/WebSecurityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Security/WebSecurityService.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Security/WinSecurityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Security/WinSecurityService.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/System.Utility.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/System.Utility.csproj -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/System.Utility.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/System.Utility.csproj.vspscc -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Win32/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Win32/Enums.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Win32/IniConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Win32/IniConfig.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Win32/Struct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Win32/Struct.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Win32/WMI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Win32/WMI.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/System.Utility/Win32/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/System.Utility/Win32/Win32.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/App.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/App.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Images/logom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Images/logom.png -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Images/qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Images/qq.png -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Images/qq1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Images/qq1.png -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Images/qq2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Images/qq2.png -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/MainWindow.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_Button.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_Button.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_Button.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_Button.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_ComboBox_Date.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_ComboBox_Date.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_ComboBox_Date.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_ComboBox_Date.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_DataGrid.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_DataGrid.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_DataGrid.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_DataGrid.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_Image.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_Image.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_Image.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_Image.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_ImageViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_ImageViewer.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_ImageViewer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_ImageViewer.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_ListBox_MultiCom.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_ListBox_MultiCom.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_ListBox_MultiCom.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_ListBox_MultiCom.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_ListView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_ListView.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_ListView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_ListView.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_MVVM.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_MVVM.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_MVVM.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_MVVM.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_MultCase.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_MultCase.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_MultCase.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_MultCase.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_TabControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_TabControl.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_TabControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_TabControl.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_Test.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_Test.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_Test.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_Test.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_TextBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_TextBox.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_TextBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_TextBox.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_TreeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_TreeView.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_TreeView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_TreeView.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_Waiting.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_Waiting.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_Waiting.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_Waiting.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_Webbrowser.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_Webbrowser.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_Webbrowser.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Page/Page_Webbrowser.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Properties/Resources.resx -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Properties/Settings.settings -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Style/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Style/Colors.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Style/Default.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Style/Default.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/Util.Controls.WPFTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/Util.Controls.WPFTest.csproj -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/XLY.Framework.WPFTest.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/XLY.Framework.WPFTest.csproj.vspscc -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/app.config -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/bin/Debug/Images/logom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/bin/Debug/Images/logom.png -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/bin/Debug/Images/qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/bin/Debug/Images/qq.png -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/bin/Debug/Images/qq1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/bin/Debug/Images/qq1.png -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/bin/Debug/Images/qq2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/bin/Debug/Images/qq2.png -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/bin/Debug/Microsoft.Expression.Drawing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/bin/Debug/Microsoft.Expression.Drawing.dll -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/bin/Debug/Microsoft.Expression.Drawing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/bin/Debug/Microsoft.Expression.Drawing.xml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/bin/Debug/Microsoft.Expression.Effects.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/bin/Debug/Microsoft.Expression.Effects.dll -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/bin/Debug/Microsoft.Expression.Effects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/bin/Debug/Microsoft.Expression.Effects.xml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/bin/Debug/Microsoft.Expression.Interactions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/bin/Debug/Microsoft.Expression.Interactions.dll -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/bin/Debug/Microsoft.Windows.Shell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/bin/Debug/Microsoft.Windows.Shell.dll -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/bin/Debug/System.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/bin/Debug/System.Utility.dll -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/bin/Debug/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/bin/Debug/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/bin/Debug/Util.Controls.WPFTest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/bin/Debug/Util.Controls.WPFTest.exe -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/bin/Debug/Util.Controls.WPFTest.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/bin/Debug/Util.Controls.WPFTest.exe.config -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/bin/Debug/Util.Controls.WPFTest.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/bin/Debug/Util.Controls.WPFTest.pdb -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/bin/Debug/Util.Controls.WPFTest.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/bin/Debug/Util.Controls.WPFTest.vshost.exe -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/bin/Debug/Util.Controls.WPFTest.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/bin/Debug/Util.Controls.WPFTest.vshost.exe.config -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/bin/Debug/Util.Controls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/bin/Debug/Util.Controls.dll -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/bin/Debug/Util.Controls.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/bin/Debug/Util.Controls.pdb -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/doc/Remark.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/doc/Remark.txt -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/doc/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/doc/demo.css -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/doc/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/doc/demo.html -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/doc/iconfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/doc/iconfont.css -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/doc/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/doc/iconfont.ttf -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/App.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/App.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/App.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/App.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/GeneratedInternalTypeHelper.g.cs: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/GeneratedInternalTypeHelper.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/GeneratedInternalTypeHelper.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/MainWindow.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/MainWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/MainWindow.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/MainWindow.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_Button.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_Button.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_Button.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_Button.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_Button.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_Button.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_ComboBox_Date.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_ComboBox_Date.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_ComboBox_Date.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_ComboBox_Date.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_ComboBox_Date.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_ComboBox_Date.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_DataGrid.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_DataGrid.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_DataGrid.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_DataGrid.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_DataGrid.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_DataGrid.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_Image.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_Image.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_Image.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_Image.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_Image.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_Image.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_ImageViewer.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_ImageViewer.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_ImageViewer.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_ImageViewer.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_ImageViewer.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_ImageViewer.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_ListBox_MultiCom.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_ListBox_MultiCom.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_ListBox_MultiCom.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_ListBox_MultiCom.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_ListBox_MultiCom.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_ListBox_MultiCom.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_ListView.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_ListView.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_ListView.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_ListView.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_ListView.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_ListView.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_MVVM.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_MVVM.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_MVVM.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_MVVM.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_MVVM.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_MVVM.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_MultCase.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_MultCase.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_MultCase.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_MultCase.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_MultCase.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_MultCase.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_TabControl.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_TabControl.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_TabControl.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_TabControl.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_TabControl.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_TabControl.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_Test.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_Test.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_Test.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_Test.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_Test.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_Test.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_TextBox.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_TextBox.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_TextBox.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_TextBox.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_TextBox.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_TextBox.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_TreeView.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_TreeView.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_TreeView.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_TreeView.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_TreeView.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_TreeView.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_Waiting.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_Waiting.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_Waiting.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_Waiting.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_Waiting.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_Waiting.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_Webbrowser.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_Webbrowser.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_Webbrowser.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_Webbrowser.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_Webbrowser.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Page/Page_Webbrowser.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Style/Colors.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Style/Colors.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Style/Default.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Style/Default.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Util.Controls.WPFTest.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Util.Controls.WPFTest.Properties.Resources.resources -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Util.Controls.WPFTest.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Util.Controls.WPFTest.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Util.Controls.WPFTest.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Util.Controls.WPFTest.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Util.Controls.WPFTest.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Util.Controls.WPFTest.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Util.Controls.WPFTest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Util.Controls.WPFTest.exe -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Util.Controls.WPFTest.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Util.Controls.WPFTest.g.resources -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Util.Controls.WPFTest.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Util.Controls.WPFTest.pdb -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Util.Controls.WPFTest_Content.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Util.Controls.WPFTest_Content.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Util.Controls.WPFTest_Content.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Util.Controls.WPFTest_Content.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Util.Controls.WPFTest_MarkupCompile.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Util.Controls.WPFTest_MarkupCompile.cache -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Util.Controls.WPFTest_MarkupCompile.i.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Util.Controls.WPFTest_MarkupCompile.i.cache -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Util.Controls.WPFTest_MarkupCompile.i.lref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Util.Controls.WPFTest_MarkupCompile.i.lref -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Util.Controls.WPFTest_MarkupCompile.lref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/Util.Controls.WPFTest_MarkupCompile.lref -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/XLY.Framework.WPFTest.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/XLY.Framework.WPFTest.Properties.Resources.resources -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/XLY.Framework.WPFTest.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/XLY.Framework.WPFTest.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/XLY.Framework.WPFTest.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/XLY.Framework.WPFTest.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/XLY.Framework.WPFTest.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/XLY.Framework.WPFTest.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/XLY.Framework.WPFTest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/XLY.Framework.WPFTest.exe -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/XLY.Framework.WPFTest.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/XLY.Framework.WPFTest.g.resources -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/XLY.Framework.WPFTest.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/XLY.Framework.WPFTest.pdb -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/XLY.Framework.WPFTest_Content.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/XLY.Framework.WPFTest_Content.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/XLY.Framework.WPFTest_Content.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/XLY.Framework.WPFTest_Content.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/XLY.Framework.WPFTest_MarkupCompile.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/XLY.Framework.WPFTest_MarkupCompile.cache -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/XLY.Framework.WPFTest_MarkupCompile.i.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/XLY.Framework.WPFTest_MarkupCompile.i.cache -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/XLY.Framework.WPFTest_MarkupCompile.lref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/XLY.Framework.WPFTest_MarkupCompile.lref -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/control/MultCaseTabControl.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/control/MultCaseTabControl.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/old/LocalImageViewer.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/old/LocalImageViewer.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/old/LocalImageViewer.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/old/LocalImageViewer.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/old/LocalImageViewer.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/old/LocalImageViewer.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/old/WebImageViewer.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/old/WebImageViewer.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/old/WebImageViewer.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/old/WebImageViewer.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/old/WebImageViewer.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Debug/old/WebImageViewer.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/App.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/App.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/App.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/App.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/GeneratedInternalTypeHelper.g.cs: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/GeneratedInternalTypeHelper.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/GeneratedInternalTypeHelper.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/MainWindow.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/MainWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/MainWindow.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/MainWindow.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_Button.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_Button.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_Button.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_Button.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_Button.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_Button.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_ComboBox_Date.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_ComboBox_Date.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_ComboBox_Date.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_ComboBox_Date.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_ComboBox_Date.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_ComboBox_Date.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_DataGrid.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_DataGrid.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_DataGrid.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_DataGrid.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_DataGrid.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_DataGrid.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_Image.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_Image.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_Image.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_Image.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_Image.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_Image.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_ImageViewer.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_ImageViewer.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_ImageViewer.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_ImageViewer.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_ImageViewer.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_ImageViewer.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_ListBox_MultiCom.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_ListBox_MultiCom.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_ListBox_MultiCom.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_ListBox_MultiCom.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_ListBox_MultiCom.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_ListBox_MultiCom.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_ListView.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_ListView.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_ListView.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_ListView.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_ListView.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_ListView.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_MVVM.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_MVVM.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_MVVM.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_MVVM.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_MVVM.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_MVVM.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_MultCase.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_MultCase.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_MultCase.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_MultCase.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_MultCase.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_MultCase.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_TabControl.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_TabControl.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_TabControl.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_TabControl.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_TabControl.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_TabControl.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_Test.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_Test.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_Test.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_Test.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_Test.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_Test.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_TextBox.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_TextBox.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_TextBox.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_TextBox.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_TextBox.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_TextBox.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_TreeView.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_TreeView.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_TreeView.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_TreeView.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_TreeView.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_TreeView.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_Waiting.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_Waiting.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_Waiting.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_Waiting.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_Waiting.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_Waiting.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_Webbrowser.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_Webbrowser.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_Webbrowser.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_Webbrowser.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_Webbrowser.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Page/Page_Webbrowser.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Style/Colors.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Style/Colors.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Style/Default.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/Style/Default.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/XLY.Framework.WPFTest.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/XLY.Framework.WPFTest.Properties.Resources.resources -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/XLY.Framework.WPFTest.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/XLY.Framework.WPFTest.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/XLY.Framework.WPFTest.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/XLY.Framework.WPFTest.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/XLY.Framework.WPFTest.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/XLY.Framework.WPFTest.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/XLY.Framework.WPFTest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/XLY.Framework.WPFTest.exe -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/XLY.Framework.WPFTest.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/XLY.Framework.WPFTest.g.resources -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/XLY.Framework.WPFTest.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/XLY.Framework.WPFTest.pdb -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/XLY.Framework.WPFTest_Content.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/XLY.Framework.WPFTest_Content.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/XLY.Framework.WPFTest_Content.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/XLY.Framework.WPFTest_Content.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/XLY.Framework.WPFTest_MarkupCompile.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/XLY.Framework.WPFTest_MarkupCompile.cache -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/XLY.Framework.WPFTest_MarkupCompile.i.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/XLY.Framework.WPFTest_MarkupCompile.i.cache -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/XLY.Framework.WPFTest_MarkupCompile.i.lref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/XLY.Framework.WPFTest_MarkupCompile.i.lref -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/XLY.Framework.WPFTest_MarkupCompile.lref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/XLY.Framework.WPFTest_MarkupCompile.lref -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/control/MultCaseTabControl.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/control/MultCaseTabControl.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/control/MultCaseTabControl.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/control/MultCaseTabControl.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/control/MultCaseTabControl.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/control/MultCaseTabControl.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/old/LocalImageViewer.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/old/LocalImageViewer.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/old/LocalImageViewer.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/old/LocalImageViewer.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/old/LocalImageViewer.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/old/LocalImageViewer.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/old/WebImageViewer.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/old/WebImageViewer.baml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/old/WebImageViewer.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/old/WebImageViewer.g.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/old/WebImageViewer.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/obj/x86/Release/old/WebImageViewer.g.i.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/old/LocalImageViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/old/LocalImageViewer.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/old/LocalImageViewer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/old/LocalImageViewer.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/old/WebImageViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/old/WebImageViewer.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.WPFTest/old/WebImageViewer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.WPFTest/old/WebImageViewer.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.sln -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls.v12.suo -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Control/AnimatedGIF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Control/AnimatedGIF.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Control/BulletCheckBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Control/BulletCheckBox.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Control/BulletCheckBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Control/BulletCheckBox.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Control/BusyBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Control/BusyBox.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Control/BusyBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Control/BusyBox.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Control/FButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Control/FButton.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Control/FButton.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Control/FButton.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Control/FImage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Control/FImage.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Control/FImage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Control/FImage.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Control/HighTextBlock.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Control/HighTextBlock.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Control/HighTextBlock.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Control/HighTextBlock.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Control/MessageBoxX.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Control/MessageBoxX.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Control/MessageBoxX.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Control/MessageBoxX.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Control/MultiComboBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Control/MultiComboBox.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Control/MultiComboBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Control/MultiComboBox.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Control/ProgressRing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Control/ProgressRing.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Control/ProgressRing.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Control/ProgressRing.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Control/ThumbnailImage/EnumThumbnail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Control/ThumbnailImage/EnumThumbnail.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Control/ThumbnailImage/IThumbnailProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Control/ThumbnailImage/IThumbnailProvider.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Control/ThumbnailImage/ImageThumbnailProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Control/ThumbnailImage/ImageThumbnailProvider.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Control/ThumbnailImage/ThumbnailImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Control/ThumbnailImage/ThumbnailImage.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Control/ThumbnailImage/ThumbnailProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Control/ThumbnailImage/ThumbnailProviderFactory.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Control/ThumbnailImage/VedioThumbnailProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Control/ThumbnailImage/VedioThumbnailProvider.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Control/ThumbnailImage/WebImageThumbnailProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Control/ThumbnailImage/WebImageThumbnailProvider.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Control/VirtualizingWrapPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Control/VirtualizingWrapPanel.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Control/WaitingBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Control/WaitingBox.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Control/WaitingBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Control/WaitingBox.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Control/WindowBase.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Control/WindowBase.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Control/WindowBase.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Control/WindowBase.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Converter/BackgroundToForegroundConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Converter/BackgroundToForegroundConverter.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Converter/Converters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Converter/Converters.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Converter/PercentToAngleConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Converter/PercentToAngleConverter.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Converter/ThicknessToDoubleConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Converter/ThicknessToDoubleConverter.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Converter/TreeViewMarginConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Converter/TreeViewMarginConverter.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Converter/TrueToFalseConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Converter/TrueToFalseConverter.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Properties/Resources.resx -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Properties/Settings.settings -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Resources/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Resources/iconfont.ttf -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Resources/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Resources/logo.ico -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Resources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Resources/logo.png -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Style/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Style/Colors.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Style/Global.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Style/Global.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Style/Style.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Style/Style.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Style/Themes/Calendar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Style/Themes/Calendar.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Style/Themes/CheckBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Style/Themes/CheckBox.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Style/Themes/ComboBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Style/Themes/ComboBox.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Style/Themes/DataGrid.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Style/Themes/DataGrid.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Style/Themes/DatePicker.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Style/Themes/DatePicker.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Style/Themes/FIcon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Style/Themes/FIcon.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Style/Themes/ListBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Style/Themes/ListBox.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Style/Themes/ListView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Style/Themes/ListView.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Style/Themes/LoopProcessBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Style/Themes/LoopProcessBar.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Style/Themes/Menu.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Style/Themes/Menu.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Style/Themes/PasswordBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Style/Themes/PasswordBox.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Style/Themes/ProgressBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Style/Themes/ProgressBar.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Style/Themes/RadioButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Style/Themes/RadioButton.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Style/Themes/ScrollViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Style/Themes/ScrollViewer.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Style/Themes/Separator.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Style/Themes/Separator.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Style/Themes/Share.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Style/Themes/Share.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Style/Themes/TabControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Style/Themes/TabControl.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Style/Themes/TextBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Style/Themes/TextBox.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Style/Themes/ToggleButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Style/Themes/ToggleButton.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Style/Themes/TreeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Style/Themes/TreeView.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Themes/Generic.xaml -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Util.Controls.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Util.Controls.csproj -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Util.Controls.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Util.Controls.v12.suo -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Win32/ChangeWindowSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Win32/ChangeWindowSize.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Win32/HitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Win32/HitTest.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/Win32/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/Win32/NativeMethods.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/XLY.Framework.Controls.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/XLY.Framework.Controls.csproj.vspscc -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/usister.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/usister.txt -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/{Core}/Common/BaseNotifyPropertyChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/{Core}/Common/BaseNotifyPropertyChanged.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/{Core}/Common/ConsoleAsynNotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/{Core}/Common/ConsoleAsynNotify.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/{Core}/Common/DefaultAsynNotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/{Core}/Common/DefaultAsynNotify.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/{Core}/Common/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/{Core}/Common/Exceptions.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/{Core}/Common/FileAsynNotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/{Core}/Common/FileAsynNotify.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/{Core}/Common/IAsynNotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/{Core}/Common/IAsynNotify.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/{Core}/ControlAttachProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/{Core}/ControlAttachProperty.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/{Core}/ControlExtession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/{Core}/ControlExtession.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/{Core}/Messenger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/{Core}/Messenger.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/Util.Controls/{Core}/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/Util.Controls/{Core}/RelayCommand.cs -------------------------------------------------------------------------------- /Util.Controls.V1.0/lib/Microsoft.Expression.Controls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/lib/Microsoft.Expression.Controls.dll -------------------------------------------------------------------------------- /Util.Controls.V1.0/lib/Microsoft.Expression.Drawing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/lib/Microsoft.Expression.Drawing.dll -------------------------------------------------------------------------------- /Util.Controls.V1.0/lib/Microsoft.Expression.Effects.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/lib/Microsoft.Expression.Effects.dll -------------------------------------------------------------------------------- /Util.Controls.V1.0/lib/Microsoft.Expression.Interactions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/lib/Microsoft.Expression.Interactions.dll -------------------------------------------------------------------------------- /Util.Controls.V1.0/lib/Microsoft.Expression.Prototyping.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/lib/Microsoft.Expression.Prototyping.Interactivity.dll -------------------------------------------------------------------------------- /Util.Controls.V1.0/lib/Microsoft.Windows.Shell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/lib/Microsoft.Windows.Shell.dll -------------------------------------------------------------------------------- /Util.Controls.V1.0/lib/System.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/lib/System.Utility.dll -------------------------------------------------------------------------------- /Util.Controls.V1.0/lib/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V1.0/lib/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /Util.Controls.V2.0/.vs/Util.Controls/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/.vs/Util.Controls/v15/.suo -------------------------------------------------------------------------------- /Util.Controls.V2.0/.vs/Util.Controls/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/.vs/Util.Controls/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Util.Controls.V2.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/README.md -------------------------------------------------------------------------------- /Util.Controls.V2.0/TestDemo/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/TestDemo/App.config -------------------------------------------------------------------------------- /Util.Controls.V2.0/TestDemo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/TestDemo/App.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/TestDemo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/TestDemo/App.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/TestDemo/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/TestDemo/MainWindow.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/TestDemo/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/TestDemo/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/TestDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/TestDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/TestDemo/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/TestDemo/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/TestDemo/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/TestDemo/Properties/Resources.resx -------------------------------------------------------------------------------- /Util.Controls.V2.0/TestDemo/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/TestDemo/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/TestDemo/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/TestDemo/Properties/Settings.settings -------------------------------------------------------------------------------- /Util.Controls.V2.0/TestDemo/TestDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/TestDemo/TestDemo.csproj -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls.sln -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Behavior/DoubleClickCommandBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Behavior/DoubleClickCommandBehavior.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Behavior/RotateAnimationBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Behavior/RotateAnimationBehavior.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Control/AnimatedGIF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Control/AnimatedGIF.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Control/BusyBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Control/BusyBox.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Control/BusyBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Control/BusyBox.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Control/CustomVirtualizingStackPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Control/CustomVirtualizingStackPanel.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Control/FImage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Control/FImage.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Control/FImage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Control/FImage.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Control/HighTextBlock.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Control/HighTextBlock.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Control/HighTextBlock.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Control/HighTextBlock.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Control/MessageBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Control/MessageBox.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Control/MessageBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Control/MessageBox.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Control/MultiComboBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Control/MultiComboBox.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Control/MultiComboBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Control/MultiComboBox.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Control/Panel/FillWrapPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Control/Panel/FillWrapPanel.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Control/PopMessageBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Control/PopMessageBox.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Control/PopMessageBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Control/PopMessageBox.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Control/ProgressForValue.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Control/ProgressForValue.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Control/ProgressForValue.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Control/ProgressForValue.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Control/ProgressRing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Control/ProgressRing.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Control/ProgressRing.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Control/ProgressRing.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Control/QuestionBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Control/QuestionBox.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Control/QuestionBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Control/QuestionBox.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Control/RangeSlider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Control/RangeSlider.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Control/TreeComboBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Control/TreeComboBox.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Control/TreeComboBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Control/TreeComboBox.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Control/VerticalTextBlock.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Control/VerticalTextBlock.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Control/VerticalTextBlock.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Control/VerticalTextBlock.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Control/VirtualizingWrapPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Control/VirtualizingWrapPanel.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Control/WaitingBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Control/WaitingBox.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Control/WaitingBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Control/WaitingBox.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Control/WindowBase.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Control/WindowBase.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Control/WindowBase.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Control/WindowBase.xaml.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Converter/BackgroundToForegroundConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Converter/BackgroundToForegroundConverter.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Converter/BitmapImageSourceConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Converter/BitmapImageSourceConverter.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Converter/BoolToTextConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Converter/BoolToTextConverter.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Converter/BoolToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Converter/BoolToVisibilityConverter.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Converter/BrushToColorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Converter/BrushToColorConverter.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Converter/BytesToImageSourceConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Converter/BytesToImageSourceConverter.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Converter/CharacterWrapConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Converter/CharacterWrapConverter.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Converter/ColorToBrushConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Converter/ColorToBrushConverter.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Converter/ColorToStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Converter/ColorToStringConverter.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Converter/CountOrNullToCollapsedConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Converter/CountOrNullToCollapsedConverter.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Converter/CountOrNullToEnableConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Converter/CountOrNullToEnableConverter.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Converter/CountOrNullToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Converter/CountOrNullToVisibilityConverter.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Converter/DoubleToThicknessConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Converter/DoubleToThicknessConverter.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Converter/EnabledToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Converter/EnabledToVisibilityConverter.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Converter/EnumDescriptionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Converter/EnumDescriptionConverter.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Converter/EnumTypeToItemSourceConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Converter/EnumTypeToItemSourceConverter.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Converter/EnumsToItemSourceConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Converter/EnumsToItemSourceConverter.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Converter/NullAndVisibilityToCollapsedConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Converter/NullAndVisibilityToCollapsedConverter.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Converter/NullToEnableConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Converter/NullToEnableConverter.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Converter/NullToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Converter/NullToVisibilityConverter.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Converter/ObjectTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Converter/ObjectTypeConverter.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Converter/PercentToAngleConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Converter/PercentToAngleConverter.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Converter/PointConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Converter/PointConverter.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Converter/SizeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Converter/SizeConverter.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Converter/StringFormatConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Converter/StringFormatConverter.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Converter/StringLengthToBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Converter/StringLengthToBoolConverter.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Converter/StringLengthToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Converter/StringLengthToVisibilityConverter.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Converter/ThicknessToDoubleConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Converter/ThicknessToDoubleConverter.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Converter/TreeViewMarginConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Converter/TreeViewMarginConverter.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Converter/TrueToFalseConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Converter/TrueToFalseConverter.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Converter/VisibilityToCollapsedConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Converter/VisibilityToCollapsedConverter.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Converter/VisibilityToStarGridLengthConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Converter/VisibilityToStarGridLengthConverter.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Converter/XConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Converter/XConverter.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/CustomControl1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/CustomControl1.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Extension/ControlExtesion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Extension/ControlExtesion.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Extension/EnumBindingExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Extension/EnumBindingExtension.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Extension/TreeViewExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Extension/TreeViewExtension.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Global.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Global.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Helper/ColorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Helper/ColorHelper.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Helper/ControlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Helper/ControlHelper.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Helper/FileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Helper/FileHelper.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Helper/GUIThreadHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Helper/GUIThreadHelper.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Helper/ImageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Helper/ImageHelper.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Helper/ResourceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Helper/ResourceHelper.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Helper/Win32Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Helper/Win32Helper.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Mvvm/BaseNotifyPropertyChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Mvvm/BaseNotifyPropertyChanged.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Mvvm/Messenger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Mvvm/Messenger.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Mvvm/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Mvvm/RelayCommand.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Properties/Resources.resx -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Properties/Settings.settings -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Style.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Style.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Style/Button.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Style/Button.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Style/Calendar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Style/Calendar.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Style/CheckBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Style/CheckBox.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Style/ComboBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Style/ComboBox.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Style/DataGrid.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Style/DataGrid.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Style/DatePicker.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Style/DatePicker.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Style/FIcon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Style/FIcon.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Style/ListBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Style/ListBox.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Style/ListView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Style/ListView.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Style/Menu.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Style/Menu.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Style/PasswordBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Style/PasswordBox.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Style/ProgressBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Style/ProgressBar.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Style/RadioButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Style/RadioButton.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Style/RangeSlider.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Style/RangeSlider.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Style/ScrollViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Style/ScrollViewer.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Style/Separator.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Style/Separator.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Style/Share.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Style/Share.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Style/Slider.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Style/Slider.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Style/TabControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Style/TabControl.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Style/TextBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Style/TextBox.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Style/ToggleButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Style/ToggleButton.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Style/TreeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Style/TreeView.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Themes/Color.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Themes/Color.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Themes/Generic.xaml -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Themes/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Themes/iconfont.ttf -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/Util.Controls.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/Util.Controls.csproj -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/readme.md -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/{Core}/AsyncObservableCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/{Core}/AsyncObservableCollection.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/{Core}/Cache/CacheManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/{Core}/Cache/CacheManager.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/{Core}/Cache/CacheTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/{Core}/Cache/CacheTime.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/{Core}/Cache/DefaultCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/{Core}/Cache/DefaultCache.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/{Core}/Cache/ICache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/{Core}/Cache/ICache.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/{Core}/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/{Core}/Constants.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/{Core}/Executer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/{Core}/Executer.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/{Core}/Guard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/{Core}/Guard.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/{Core}/IgnoreCaseStringComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/{Core}/IgnoreCaseStringComparer.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/{Core}/Singleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/{Core}/Singleton.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/{Core}/TypeExtension.Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/{Core}/TypeExtension.Enum.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/{Core}/TypeExtension.Exception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/{Core}/TypeExtension.Exception.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/{Core}/TypeExtension.IEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/{Core}/TypeExtension.IEnumerable.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/{Core}/TypeExtension.Int.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/{Core}/TypeExtension.Int.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/{Core}/TypeExtension.Reflection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/{Core}/TypeExtension.Reflection.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/{Core}/TypeExtension.String.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/{Core}/TypeExtension.String.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/{Core}/TypeExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/{Core}/TypeExtension.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/Util.Controls/{Core}/UtilProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/Util.Controls/{Core}/UtilProperty.cs -------------------------------------------------------------------------------- /Util.Controls.V2.0/plan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwonganding/wpf.controls/HEAD/Util.Controls.V2.0/plan.txt --------------------------------------------------------------------------------