├── .gitattributes ├── .gitignore ├── DTO ├── App.config ├── DTO.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── User.cs ├── KibaFramework.sln ├── KibaFramework ├── App.config ├── App.xaml ├── App.xaml.cs ├── DataGridConfig.txt ├── Dll │ ├── AutoMapper.dll │ ├── Microsoft.Expression.Interactions.dll │ ├── System.Windows.Interactivity.dll │ ├── Xceed.Wpf.Toolkit.dll │ └── log4net.dll ├── Image │ ├── check.png │ ├── logo.ico │ └── logo.png ├── KibaFramework.csproj ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Theme │ └── Theme.xaml ├── UIControl │ ├── KDataGrid.xaml │ └── KDataGrid.xaml.cs ├── View │ ├── Control │ │ ├── PageCheckBox.xaml │ │ ├── PageCheckBox.xaml.cs │ │ ├── PageComboBox.xaml │ │ ├── PageComboBox.xaml.cs │ │ ├── PageDataGrid.xaml │ │ ├── PageDataGrid.xaml.cs │ │ ├── PageDataGridAdvanced.xaml │ │ ├── PageDataGridAdvanced.xaml.cs │ │ ├── PageDataGridMid.xaml │ │ ├── PageDataGridMid.xaml.cs │ │ ├── PageTextBox.xaml │ │ └── PageTextBox.xaml.cs │ ├── PageMain.xaml │ ├── PageMain.xaml.cs │ ├── User │ │ ├── PageUser.xaml │ │ ├── PageUser.xaml.cs │ │ ├── PageUserList.xaml │ │ ├── PageUserList.xaml.cs │ │ ├── WindowCreateUser.xaml │ │ └── WindowCreateUser.xaml.cs │ ├── WindowMain.xaml │ └── WindowMain.xaml.cs ├── ViewConvert │ ├── NumberViewConvert.cs │ └── RowDetailViewConvert.cs ├── log4net.config └── logo.ico ├── Model ├── ColumnConfig.cs ├── ColumnPreImage.cs ├── DataGridConfig.cs ├── FilterProperty.cs ├── Model.csproj └── Properties │ └── AssemblyInfo.cs ├── Proxy ├── Properties │ └── AssemblyInfo.cs ├── Proxy.csproj └── TestDataProxy.cs ├── README.md ├── Utility ├── Attribute │ └── IsNullAttribute.cs ├── AutoMapperHelper.cs ├── Enum │ └── ColumnControlType.cs ├── Extensions.cs ├── InnerExcepiton.cs ├── Logger.cs ├── Properties │ └── AssemblyInfo.cs ├── ToolFunction.cs ├── Utility.csproj └── VisualHelper.cs └── ViewModel ├── DataControl ├── CheckBox.cs ├── ComboBox.cs ├── Control.cs ├── DataGrid.cs ├── DatePicker.cs ├── Image.cs ├── ListBox.cs ├── ProgressBar.cs ├── TextBlock.cs └── TextBox.cs ├── Helper ├── DataGridHelper.cs ├── DispatcherHelper.cs └── ProxyHelper.cs ├── Properties └── AssemblyInfo.cs ├── Static └── StaticData.cs ├── VM ├── Base │ ├── BaseCommand.cs │ └── BaseViewModel.cs ├── Control │ ├── VM_PageCheckBox.cs │ ├── VM_PageComboBox.cs │ ├── VM_PageDataGrid.cs │ ├── VM_PageDataGridAdvanced.cs │ ├── VM_PageDataGridMid.cs │ └── VM_PageTextBox.cs ├── User │ ├── VM_PageUser.cs │ ├── VM_PageUserList.cs │ └── VM_WindowCreateUser.cs ├── VM_PageMain.cs └── VM_WindowMain.cs ├── ViewModel.csproj └── ViewModel.csproj.user /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/.gitignore -------------------------------------------------------------------------------- /DTO/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/DTO/App.config -------------------------------------------------------------------------------- /DTO/DTO.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/DTO/DTO.csproj -------------------------------------------------------------------------------- /DTO/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/DTO/Program.cs -------------------------------------------------------------------------------- /DTO/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/DTO/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DTO/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/DTO/User.cs -------------------------------------------------------------------------------- /KibaFramework.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework.sln -------------------------------------------------------------------------------- /KibaFramework/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/App.config -------------------------------------------------------------------------------- /KibaFramework/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/App.xaml -------------------------------------------------------------------------------- /KibaFramework/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/App.xaml.cs -------------------------------------------------------------------------------- /KibaFramework/DataGridConfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/DataGridConfig.txt -------------------------------------------------------------------------------- /KibaFramework/Dll/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/Dll/AutoMapper.dll -------------------------------------------------------------------------------- /KibaFramework/Dll/Microsoft.Expression.Interactions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/Dll/Microsoft.Expression.Interactions.dll -------------------------------------------------------------------------------- /KibaFramework/Dll/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/Dll/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /KibaFramework/Dll/Xceed.Wpf.Toolkit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/Dll/Xceed.Wpf.Toolkit.dll -------------------------------------------------------------------------------- /KibaFramework/Dll/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/Dll/log4net.dll -------------------------------------------------------------------------------- /KibaFramework/Image/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/Image/check.png -------------------------------------------------------------------------------- /KibaFramework/Image/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/Image/logo.ico -------------------------------------------------------------------------------- /KibaFramework/Image/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/Image/logo.png -------------------------------------------------------------------------------- /KibaFramework/KibaFramework.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/KibaFramework.csproj -------------------------------------------------------------------------------- /KibaFramework/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /KibaFramework/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /KibaFramework/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/Properties/Resources.resx -------------------------------------------------------------------------------- /KibaFramework/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /KibaFramework/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/Properties/Settings.settings -------------------------------------------------------------------------------- /KibaFramework/Theme/Theme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/Theme/Theme.xaml -------------------------------------------------------------------------------- /KibaFramework/UIControl/KDataGrid.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/UIControl/KDataGrid.xaml -------------------------------------------------------------------------------- /KibaFramework/UIControl/KDataGrid.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/UIControl/KDataGrid.xaml.cs -------------------------------------------------------------------------------- /KibaFramework/View/Control/PageCheckBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/View/Control/PageCheckBox.xaml -------------------------------------------------------------------------------- /KibaFramework/View/Control/PageCheckBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/View/Control/PageCheckBox.xaml.cs -------------------------------------------------------------------------------- /KibaFramework/View/Control/PageComboBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/View/Control/PageComboBox.xaml -------------------------------------------------------------------------------- /KibaFramework/View/Control/PageComboBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/View/Control/PageComboBox.xaml.cs -------------------------------------------------------------------------------- /KibaFramework/View/Control/PageDataGrid.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/View/Control/PageDataGrid.xaml -------------------------------------------------------------------------------- /KibaFramework/View/Control/PageDataGrid.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/View/Control/PageDataGrid.xaml.cs -------------------------------------------------------------------------------- /KibaFramework/View/Control/PageDataGridAdvanced.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/View/Control/PageDataGridAdvanced.xaml -------------------------------------------------------------------------------- /KibaFramework/View/Control/PageDataGridAdvanced.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/View/Control/PageDataGridAdvanced.xaml.cs -------------------------------------------------------------------------------- /KibaFramework/View/Control/PageDataGridMid.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/View/Control/PageDataGridMid.xaml -------------------------------------------------------------------------------- /KibaFramework/View/Control/PageDataGridMid.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/View/Control/PageDataGridMid.xaml.cs -------------------------------------------------------------------------------- /KibaFramework/View/Control/PageTextBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/View/Control/PageTextBox.xaml -------------------------------------------------------------------------------- /KibaFramework/View/Control/PageTextBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/View/Control/PageTextBox.xaml.cs -------------------------------------------------------------------------------- /KibaFramework/View/PageMain.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/View/PageMain.xaml -------------------------------------------------------------------------------- /KibaFramework/View/PageMain.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/View/PageMain.xaml.cs -------------------------------------------------------------------------------- /KibaFramework/View/User/PageUser.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/View/User/PageUser.xaml -------------------------------------------------------------------------------- /KibaFramework/View/User/PageUser.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/View/User/PageUser.xaml.cs -------------------------------------------------------------------------------- /KibaFramework/View/User/PageUserList.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/View/User/PageUserList.xaml -------------------------------------------------------------------------------- /KibaFramework/View/User/PageUserList.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/View/User/PageUserList.xaml.cs -------------------------------------------------------------------------------- /KibaFramework/View/User/WindowCreateUser.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/View/User/WindowCreateUser.xaml -------------------------------------------------------------------------------- /KibaFramework/View/User/WindowCreateUser.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/View/User/WindowCreateUser.xaml.cs -------------------------------------------------------------------------------- /KibaFramework/View/WindowMain.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/View/WindowMain.xaml -------------------------------------------------------------------------------- /KibaFramework/View/WindowMain.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/View/WindowMain.xaml.cs -------------------------------------------------------------------------------- /KibaFramework/ViewConvert/NumberViewConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/ViewConvert/NumberViewConvert.cs -------------------------------------------------------------------------------- /KibaFramework/ViewConvert/RowDetailViewConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/ViewConvert/RowDetailViewConvert.cs -------------------------------------------------------------------------------- /KibaFramework/log4net.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/log4net.config -------------------------------------------------------------------------------- /KibaFramework/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/KibaFramework/logo.ico -------------------------------------------------------------------------------- /Model/ColumnConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/Model/ColumnConfig.cs -------------------------------------------------------------------------------- /Model/ColumnPreImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/Model/ColumnPreImage.cs -------------------------------------------------------------------------------- /Model/DataGridConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/Model/DataGridConfig.cs -------------------------------------------------------------------------------- /Model/FilterProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/Model/FilterProperty.cs -------------------------------------------------------------------------------- /Model/Model.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/Model/Model.csproj -------------------------------------------------------------------------------- /Model/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/Model/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Proxy/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/Proxy/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Proxy/Proxy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/Proxy/Proxy.csproj -------------------------------------------------------------------------------- /Proxy/TestDataProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/Proxy/TestDataProxy.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/README.md -------------------------------------------------------------------------------- /Utility/Attribute/IsNullAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/Utility/Attribute/IsNullAttribute.cs -------------------------------------------------------------------------------- /Utility/AutoMapperHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/Utility/AutoMapperHelper.cs -------------------------------------------------------------------------------- /Utility/Enum/ColumnControlType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/Utility/Enum/ColumnControlType.cs -------------------------------------------------------------------------------- /Utility/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/Utility/Extensions.cs -------------------------------------------------------------------------------- /Utility/InnerExcepiton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/Utility/InnerExcepiton.cs -------------------------------------------------------------------------------- /Utility/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/Utility/Logger.cs -------------------------------------------------------------------------------- /Utility/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/Utility/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Utility/ToolFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/Utility/ToolFunction.cs -------------------------------------------------------------------------------- /Utility/Utility.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/Utility/Utility.csproj -------------------------------------------------------------------------------- /Utility/VisualHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/Utility/VisualHelper.cs -------------------------------------------------------------------------------- /ViewModel/DataControl/CheckBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/ViewModel/DataControl/CheckBox.cs -------------------------------------------------------------------------------- /ViewModel/DataControl/ComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/ViewModel/DataControl/ComboBox.cs -------------------------------------------------------------------------------- /ViewModel/DataControl/Control.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/ViewModel/DataControl/Control.cs -------------------------------------------------------------------------------- /ViewModel/DataControl/DataGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/ViewModel/DataControl/DataGrid.cs -------------------------------------------------------------------------------- /ViewModel/DataControl/DatePicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/ViewModel/DataControl/DatePicker.cs -------------------------------------------------------------------------------- /ViewModel/DataControl/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/ViewModel/DataControl/Image.cs -------------------------------------------------------------------------------- /ViewModel/DataControl/ListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/ViewModel/DataControl/ListBox.cs -------------------------------------------------------------------------------- /ViewModel/DataControl/ProgressBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/ViewModel/DataControl/ProgressBar.cs -------------------------------------------------------------------------------- /ViewModel/DataControl/TextBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/ViewModel/DataControl/TextBlock.cs -------------------------------------------------------------------------------- /ViewModel/DataControl/TextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/ViewModel/DataControl/TextBox.cs -------------------------------------------------------------------------------- /ViewModel/Helper/DataGridHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/ViewModel/Helper/DataGridHelper.cs -------------------------------------------------------------------------------- /ViewModel/Helper/DispatcherHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/ViewModel/Helper/DispatcherHelper.cs -------------------------------------------------------------------------------- /ViewModel/Helper/ProxyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/ViewModel/Helper/ProxyHelper.cs -------------------------------------------------------------------------------- /ViewModel/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/ViewModel/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ViewModel/Static/StaticData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/ViewModel/Static/StaticData.cs -------------------------------------------------------------------------------- /ViewModel/VM/Base/BaseCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/ViewModel/VM/Base/BaseCommand.cs -------------------------------------------------------------------------------- /ViewModel/VM/Base/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/ViewModel/VM/Base/BaseViewModel.cs -------------------------------------------------------------------------------- /ViewModel/VM/Control/VM_PageCheckBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/ViewModel/VM/Control/VM_PageCheckBox.cs -------------------------------------------------------------------------------- /ViewModel/VM/Control/VM_PageComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/ViewModel/VM/Control/VM_PageComboBox.cs -------------------------------------------------------------------------------- /ViewModel/VM/Control/VM_PageDataGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/ViewModel/VM/Control/VM_PageDataGrid.cs -------------------------------------------------------------------------------- /ViewModel/VM/Control/VM_PageDataGridAdvanced.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/ViewModel/VM/Control/VM_PageDataGridAdvanced.cs -------------------------------------------------------------------------------- /ViewModel/VM/Control/VM_PageDataGridMid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/ViewModel/VM/Control/VM_PageDataGridMid.cs -------------------------------------------------------------------------------- /ViewModel/VM/Control/VM_PageTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/ViewModel/VM/Control/VM_PageTextBox.cs -------------------------------------------------------------------------------- /ViewModel/VM/User/VM_PageUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/ViewModel/VM/User/VM_PageUser.cs -------------------------------------------------------------------------------- /ViewModel/VM/User/VM_PageUserList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/ViewModel/VM/User/VM_PageUserList.cs -------------------------------------------------------------------------------- /ViewModel/VM/User/VM_WindowCreateUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/ViewModel/VM/User/VM_WindowCreateUser.cs -------------------------------------------------------------------------------- /ViewModel/VM/VM_PageMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/ViewModel/VM/VM_PageMain.cs -------------------------------------------------------------------------------- /ViewModel/VM/VM_WindowMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/ViewModel/VM/VM_WindowMain.cs -------------------------------------------------------------------------------- /ViewModel/ViewModel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/ViewModel/ViewModel.csproj -------------------------------------------------------------------------------- /ViewModel/ViewModel.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiba518/KibaFramework/HEAD/ViewModel/ViewModel.csproj.user --------------------------------------------------------------------------------