实例介绍
【实例截图】
【核心代码】
.
├── WPF-ControlBase-master
│ ├── Directory.Build.Props
│ ├── Document
│ │ ├── Resource
│ │ │ ├── logo.ico
│ │ │ ├── logo.jpg
│ │ │ ├── logo.png
│ │ │ ├── w.png
│ │ │ └── z.png
│ │ └── pdattach.snippet
│ ├── LICENSE
│ ├── Product
│ │ └── Debug
│ │ └── Component
│ │ └── HeBianGu.Component.DemoA.dll
│ ├── README.md
│ ├── Solution
│ │ └── hebiangu
│ │ ├── Directory.Build.Props
│ │ ├── WPF-Controls-nuget.sln
│ │ └── WPF-Controls.sln
│ └── Source
│ ├── Application
│ │ ├── HeBianGu.App.Above
│ │ │ ├── HeBianGu.App.Above.csproj
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Resources
│ │ │ │ └── propertyconfig.xml
│ │ │ └── logo.ico
│ │ ├── HeBianGu.App.Above.Share
│ │ │ ├── App.config
│ │ │ ├── App.xaml
│ │ │ ├── App.xaml.cs
│ │ │ ├── Controller
│ │ │ │ ├── CustomController.cs
│ │ │ │ └── LoyoutController.cs
│ │ │ ├── Domain
│ │ │ │ ├── AssemblyDomain.cs
│ │ │ │ └── IAssemblyDomain.cs
│ │ │ ├── HeBianGu.App.Above.Share.projitems
│ │ │ ├── HeBianGu.App.Above.Share.shproj
│ │ │ ├── Provider
│ │ │ │ ├── Config.cs
│ │ │ │ └── PropertyModel.cs
│ │ │ ├── Theme
│ │ │ │ └── Default.xaml
│ │ │ ├── View
│ │ │ │ ├── Custom
│ │ │ │ │ ├── PropertyControl.xaml
│ │ │ │ │ └── PropertyControl.xaml.cs
│ │ │ │ ├── Loyout
│ │ │ │ │ ├── ButtonControl.xaml
│ │ │ │ │ ├── ButtonControl.xaml.cs
│ │ │ │ │ ├── CheckBoxControl.xaml
│ │ │ │ │ ├── CheckBoxControl.xaml.cs
│ │ │ │ │ ├── ComboBoxControl.xaml
│ │ │ │ │ ├── ComboBoxControl.xaml.cs
│ │ │ │ │ ├── ContextMenuControl.xaml
│ │ │ │ │ ├── ContextMenuControl.xaml.cs
│ │ │ │ │ ├── DataGridControl.xaml
│ │ │ │ │ ├── DataGridControl.xaml.cs
│ │ │ │ │ ├── DatePickerControl.xaml
│ │ │ │ │ ├── DatePickerControl.xaml.cs
│ │ │ │ │ ├── ExpanderControl.xaml
│ │ │ │ │ ├── ExpanderControl.xaml.cs
│ │ │ │ │ ├── GroupBoxControl.xaml
│ │ │ │ │ ├── GroupBoxControl.xaml.cs
│ │ │ │ │ ├── ListBoxControl.xaml
│ │ │ │ │ ├── ListBoxControl.xaml.cs
│ │ │ │ │ ├── MenuControl.xaml
│ │ │ │ │ ├── MenuControl.xaml.cs
│ │ │ │ │ ├── ProgressBarControl.xaml
│ │ │ │ │ ├── ProgressBarControl.xaml.cs
│ │ │ │ │ ├── RadioControl.xaml
│ │ │ │ │ ├── RadioControl.xaml.cs
│ │ │ │ │ ├── ScrollViewerControl.xaml
│ │ │ │ │ ├── ScrollViewerControl.xaml.cs
│ │ │ │ │ ├── SliderControl.xaml
│ │ │ │ │ ├── SliderControl.xaml.cs
│ │ │ │ │ ├── TabControl.xaml
│ │ │ │ │ ├── TabControl.xaml.cs
│ │ │ │ │ ├── TextBlockControl.xaml
│ │ │ │ │ ├── TextBlockControl.xaml.cs
│ │ │ │ │ ├── TextBoxControl.xaml
│ │ │ │ │ ├── TextBoxControl.xaml.cs
│ │ │ │ │ ├── ToggleControl.xaml
│ │ │ │ │ ├── ToggleControl.xaml.cs
│ │ │ │ │ ├── TreeViewControl.xaml
│ │ │ │ │ └── TreeViewControl.xaml.cs
│ │ │ │ ├── ShellWindow.xaml
│ │ │ │ └── ShellWindow.xaml.cs
│ │ │ └── ViewModel
│ │ │ ├── Custom
│ │ │ │ └── CustomViewModel.cs
│ │ │ └── Loyout
│ │ │ └── LoyoutViewModel.cs
│ │ ├── HeBianGu.App.Blur
│ │ │ ├── HeBianGu.App.Blur.csproj
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Resources
│ │ │ │ └── data.json
│ │ │ ├── logo.ico
│ │ │ └── packages.config
│ │ ├── HeBianGu.App.Blur.Share
│ │ │ ├── App.config
│ │ │ ├── App.xaml
│ │ │ ├── App.xaml.cs
│ │ │ ├── Applications Internet Explorer.ico
│ │ │ ├── DataSourceLocator.cs
│ │ │ ├── Domain
│ │ │ │ └── AssemblyDomain.cs
│ │ │ ├── HeBianGu.App.Blur.Share.projitems
│ │ │ ├── HeBianGu.App.Blur.Share.shproj
│ │ │ ├── MainWindow.xaml
│ │ │ ├── MainWindow.xaml.cs
│ │ │ ├── Pages
│ │ │ │ ├── BaseUserControlPage.xaml
│ │ │ │ ├── BaseUserControlPage.xaml.cs
│ │ │ │ ├── ButtonPage.xaml
│ │ │ │ ├── ButtonPage.xaml.cs
│ │ │ │ ├── CheckBoxPage.xaml
│ │ │ │ ├── CheckBoxPage.xaml.cs
│ │ │ │ ├── ComboboxPage.xaml
│ │ │ │ ├── ComboboxPage.xaml.cs
│ │ │ │ ├── DataGridPage.xaml
│ │ │ │ ├── DataGridPage.xaml.cs
│ │ │ │ ├── DatePickerDemo.xaml
│ │ │ │ ├── DatePickerDemo.xaml.cs
│ │ │ │ ├── EasingFunctionPage.xaml
│ │ │ │ ├── EasingFunctionPage.xaml.cs
│ │ │ │ ├── ExpanderPage.xaml
│ │ │ │ ├── ExpanderPage.xaml.cs
│ │ │ │ ├── FormPage.xaml
│ │ │ │ ├── FormPage.xaml.cs
│ │ │ │ ├── FramePage.xaml
│ │ │ │ ├── FramePage.xaml.cs
│ │ │ │ ├── HightTextBlockPage.xaml
│ │ │ │ ├── HightTextBlockPage.xaml.cs
│ │ │ │ ├── InkCanvasPage.xaml
│ │ │ │ ├── InkCanvasPage.xaml.cs
│ │ │ │ ├── InlineDialogPage.xaml
│ │ │ │ ├── InlineDialogPage.xaml.cs
│ │ │ │ ├── ListViewPage.xaml
│ │ │ │ ├── ListViewPage.xaml.cs
│ │ │ │ ├── MessagePage.xaml
│ │ │ │ ├── MessagePage.xaml.cs
│ │ │ │ ├── NotifyPage.xaml
│ │ │ │ ├── NotifyPage.xaml.cs
│ │ │ │ ├── NumberPage.xaml
│ │ │ │ ├── NumberPage.xaml.cs
│ │ │ │ ├── PathDemo.xaml
│ │ │ │ ├── PathDemo.xaml.cs
│ │ │ │ ├── RenderTransformPage.xaml
│ │ │ │ ├── RenderTransformPage.xaml.cs
│ │ │ │ ├── ScrollView3DControlPage.xaml
│ │ │ │ ├── ScrollView3DControlPage.xaml.cs
│ │ │ │ ├── SliderPage.xaml
│ │ │ │ ├── SliderPage.xaml.cs
│ │ │ │ ├── StoryBoardFromToPage.xaml
│ │ │ │ ├── StoryBoardFromToPage.xaml.cs
│ │ │ │ ├── StoryBoardPage.xaml
│ │ │ │ ├── StoryBoardPage.xaml.cs
│ │ │ │ ├── StoryBoardPathPage.xaml
│ │ │ │ ├── StoryBoardPathPage.xaml.cs
│ │ │ │ ├── StoryBoardPlayerPage.xaml
│ │ │ │ ├── StoryBoardPlayerPage.xaml.cs
│ │ │ │ ├── SwitchPage.xaml
│ │ │ │ ├── SwitchPage.xaml.cs
│ │ │ │ ├── TabControlPage.xaml
│ │ │ │ ├── TabControlPage.xaml.cs
│ │ │ │ ├── TextBlockPage.xaml
│ │ │ │ ├── TextBlockPage.xaml.cs
│ │ │ │ ├── TextBoxPage.xaml
│ │ │ │ ├── TextBoxPage.xaml.cs
│ │ │ │ ├── ThemeUserControlPage.xaml
│ │ │ │ ├── ThemeUserControlPage.xaml.cs
│ │ │ │ ├── ToggleButtonPage.xaml
│ │ │ │ ├── ToggleButtonPage.xaml.cs
│ │ │ │ ├── TreeListViewPage.xaml
│ │ │ │ ├── TreeListViewPage.xaml.cs
│ │ │ │ ├── Viewport3DPage.xaml
│ │ │ │ ├── Viewport3DPage.xaml.cs
│ │ │ │ ├── VisuaNormsPagePage.xaml
│ │ │ │ ├── VisuaNormsPagePage.xaml.cs
│ │ │ │ ├── WaitingPage.xaml
│ │ │ │ ├── WaitingPage.xaml.cs
│ │ │ │ ├── WaterFallPage.xaml
│ │ │ │ ├── WaterFallPage.xaml.cs
│ │ │ │ ├── WindowSystemPage.xaml
│ │ │ │ ├── WindowSystemPage.xaml.cs
│ │ │ │ ├── ZoomPage.xaml
│ │ │ │ └── ZoomPage.xaml.cs
│ │ │ ├── Provider
│ │ │ │ ├── ImageHelper.cs
│ │ │ │ ├── SettingControl.xaml
│ │ │ │ └── SettingControl.xaml.cs
│ │ │ ├── TreeDictionary.xaml
│ │ │ └── ViewModel
│ │ │ └── ShellViewModel.cs
│ │ ├── HeBianGu.App.Chart
│ │ │ ├── HeBianGu.App.Chart.csproj
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── logo.ico
│ │ ├── HeBianGu.App.Chart.Share
│ │ │ ├── App.config
│ │ │ ├── App.xaml
│ │ │ ├── App.xaml.cs
│ │ │ ├── Controller
│ │ │ │ ├── BarController.cs
│ │ │ │ ├── CustomController.cs
│ │ │ │ ├── KController.cs
│ │ │ │ ├── LineController.cs
│ │ │ │ ├── LoyoutController.cs
│ │ │ │ ├── MapController.cs
│ │ │ │ ├── PieController.cs
│ │ │ │ ├── RadarController.cs
│ │ │ │ └── ScatterController.cs
│ │ │ ├── Domain
│ │ │ │ ├── AssemblyDomain.cs
│ │ │ │ └── IAssemblyDomain.cs
│ │ │ ├── HeBianGu.App.Chart.Share.projitems
│ │ │ ├── HeBianGu.App.Chart.Share.shproj
│ │ │ ├── View
│ │ │ │ ├── Bar
│ │ │ │ │ ├── BarControl.xaml
│ │ │ │ │ ├── BarControl.xaml.cs
│ │ │ │ │ ├── StackControl.xaml
│ │ │ │ │ ├── StackControl.xaml.cs
│ │ │ │ │ ├── yBarControl.xaml
│ │ │ │ │ ├── yBarControl.xaml.cs
│ │ │ │ │ ├── yStackBarControl.xaml
│ │ │ │ │ └── yStackBarControl.xaml.cs
│ │ │ │ ├── Custom
│ │ │ │ │ ├── AQIControl.xaml
│ │ │ │ │ ├── AQIControl.xaml.cs
│ │ │ │ │ ├── AgeControl.xaml
│ │ │ │ │ ├── AgeControl.xaml.cs
│ │ │ │ │ ├── AreaControl.xaml
│ │ │ │ │ ├── AreaControl.xaml.cs
│ │ │ │ │ ├── CMapControl.xaml
│ │ │ │ │ ├── CMapControl.xaml.cs
│ │ │ │ │ ├── DownControl.xaml
│ │ │ │ │ ├── DownControl.xaml.cs
│ │ │ │ │ ├── GDPControl.xaml
│ │ │ │ │ ├── GDPControl.xaml.cs
│ │ │ │ │ ├── HomeControl.xaml
│ │ │ │ │ ├── HomeControl.xaml.cs
│ │ │ │ │ ├── OscControl.xaml
│ │ │ │ │ ├── OscControl.xaml.cs
│ │ │ │ │ ├── ParallelControl.xaml
│ │ │ │ │ ├── ParallelControl.xaml.cs
│ │ │ │ │ ├── RainControl.xaml
│ │ │ │ │ ├── RainControl.xaml.cs
│ │ │ │ │ ├── RichControl.xaml
│ │ │ │ │ ├── RichControl.xaml.cs
│ │ │ │ │ ├── SinPolarControl.xaml
│ │ │ │ │ ├── SinPolarControl.xaml.cs
│ │ │ │ │ ├── ThinningControl.xaml
│ │ │ │ │ ├── ThinningControl.xaml.cs
│ │ │ │ │ ├── VisitControl.xaml
│ │ │ │ │ ├── VisitControl.xaml.cs
│ │ │ │ │ ├── WaveControl.xaml
│ │ │ │ │ └── WaveControl.xaml.cs
│ │ │ │ ├── K
│ │ │ │ │ ├── KBasicControl.xaml
│ │ │ │ │ └── KBasicControl.xaml.cs
│ │ │ │ ├── Line
│ │ │ │ │ ├── LineAreaControl.xaml
│ │ │ │ │ ├── LineAreaControl.xaml.cs
│ │ │ │ │ ├── LineControl.xaml
│ │ │ │ │ ├── LineControl.xaml.cs
│ │ │ │ │ ├── LinePolarControl.xaml
│ │ │ │ │ ├── LinePolarControl.xaml.cs
│ │ │ │ │ ├── SmoothControl.xaml
│ │ │ │ │ ├── SmoothControl.xaml.cs
│ │ │ │ │ ├── StepControl.xaml
│ │ │ │ │ └── StepControl.xaml.cs
│ │ │ │ ├── Loyout
│ │ │ │ │ ├── AngleAxisControl.xaml
│ │ │ │ │ ├── AngleAxisControl.xaml.cs
│ │ │ │ │ ├── FlagTipControl.xaml
│ │ │ │ │ ├── FlagTipControl.xaml.cs
│ │ │ │ │ ├── GridControl.xaml
│ │ │ │ │ ├── GridControl.xaml.cs
│ │ │ │ │ ├── LegendControl.xaml
│ │ │ │ │ ├── LegendControl.xaml.cs
│ │ │ │ │ ├── MarkControl.xaml
│ │ │ │ │ ├── MarkControl.xaml.cs
│ │ │ │ │ ├── MarkTipControl.xaml
│ │ │ │ │ ├── MarkTipControl.xaml.cs
│ │ │ │ │ ├── PolarControl.xaml
│ │ │ │ │ ├── PolarControl.xaml.cs
│ │ │ │ │ ├── RadarAxisControl.xaml
│ │ │ │ │ ├── RadarAxisControl.xaml.cs
│ │ │ │ │ ├── RadarControl.xaml
│ │ │ │ │ ├── RadarControl.xaml.cs
│ │ │ │ │ ├── RadiusAxisControl.xaml
│ │ │ │ │ ├── RadiusAxisControl.xaml.cs
│ │ │ │ │ ├── TitleControl.xaml
│ │ │ │ │ ├── TitleControl.xaml.cs
│ │ │ │ │ ├── ToolBarControl.xaml
│ │ │ │ │ ├── ToolBarControl.xaml.cs
│ │ │ │ │ ├── VisualMapControl.xaml
│ │ │ │ │ ├── VisualMapControl.xaml.cs
│ │ │ │ │ ├── xAxisControl.xaml
│ │ │ │ │ ├── xAxisControl.xaml.cs
│ │ │ │ │ ├── yAxisControl.xaml
│ │ │ │ │ └── yAxisControl.xaml.cs
│ │ │ │ ├── Map
│ │ │ │ │ ├── ChinaControl.xaml
│ │ │ │ │ ├── ChinaControl.xaml.cs
│ │ │ │ │ ├── WorldControl.xaml
│ │ │ │ │ └── WorldControl.xaml.cs
│ │ │ │ ├── Pie
│ │ │ │ │ ├── PieBasicControl.xaml
│ │ │ │ │ └── PieBasicControl.xaml.cs
│ │ │ │ ├── Radar
│ │ │ │ │ ├── BasicControl.xaml
│ │ │ │ │ └── BasicControl.xaml.cs
│ │ │ │ ├── Scatter
│ │ │ │ │ ├── BubbleControl.xaml
│ │ │ │ │ ├── BubbleControl.xaml.cs
│ │ │ │ │ ├── ScatterControl.xaml
│ │ │ │ │ ├── ScatterControl.xaml.cs
│ │ │ │ │ ├── ScatterPolarControl.xaml
│ │ │ │ │ └── ScatterPolarControl.xaml.cs
│ │ │ │ ├── ShellWindow.xaml
│ │ │ │ └── ShellWindow.xaml.cs
│ │ │ └── ViewModel
│ │ │ ├── Bar
│ │ │ │ └── BarViewModel.cs
│ │ │ ├── Custom
│ │ │ │ └── CustomViewModel.cs
│ │ │ ├── K
│ │ │ │ └── KViewModel.cs
│ │ │ ├── Line
│ │ │ │ └── LineViewModel.cs
│ │ │ ├── Loyout
│ │ │ │ └── LoyoutViewModel.cs
│ │ │ ├── Map
│ │ │ │ └── MapViewModel.cs
│ │ │ ├── Pie
│ │ │ │ └── PieViewModel.cs
│ │ │ ├── Radar
│ │ │ │ └── RadarViewModel.cs
│ │ │ └── Scatter
│ │ │ └── ScatterViewModel.cs
│ │ ├── HeBianGu.App.Creator.Share
│ │ │ ├── App.config
│ │ │ ├── App.xaml
│ │ │ ├── App.xaml.cs
│ │ │ ├── Controller
│ │ │ │ └── LoyoutController.cs
│ │ │ ├── DataSourceLocator.cs
│ │ │ ├── Domain
│ │ │ │ ├── AssemblyDomain.cs
│ │ │ │ └── IAssemblyDomain.cs
│ │ │ ├── HeBianGu.App.Creator.Share.projitems
│ │ │ ├── HeBianGu.App.Creator.Share.shproj
│ │ │ ├── Provider
│ │ │ │ ├── ComponentData.cs
│ │ │ │ ├── LocalizeService.cs
│ │ │ │ ├── LogService.cs
│ │ │ │ └── WorkflowProjectSerializeService.cs
│ │ │ ├── Theme
│ │ │ │ └── Default.xaml
│ │ │ ├── View
│ │ │ │ ├── Loyout
│ │ │ │ │ ├── AccountControl.xaml
│ │ │ │ │ ├── AccountControl.xaml.cs
│ │ │ │ │ ├── ConnectControl.xaml
│ │ │ │ │ ├── ConnectControl.xaml.cs
│ │ │ │ │ ├── HomeControl.xaml
│ │ │ │ │ ├── HomeControl.xaml.cs
│ │ │ │ │ ├── InfoControl.xaml
│ │ │ │ │ ├── InfoControl.xaml.cs
│ │ │ │ │ ├── NewControl.xaml
│ │ │ │ │ ├── NewControl.xaml.cs
│ │ │ │ │ ├── OpenControl.xaml
│ │ │ │ │ ├── OpenControl.xaml.cs
│ │ │ │ │ ├── SaveControl.xaml
│ │ │ │ │ └── SaveControl.xaml.cs
│ │ │ │ ├── SettingDialog.xaml
│ │ │ │ ├── SettingDialog.xaml.cs
│ │ │ │ ├── ShellWindow.xaml
│ │ │ │ └── ShellWindow.xaml.cs
│ │ │ ├── ViewModel
│ │ │ │ ├── Loyout
│ │ │ │ │ └── LoyoutViewModel.cs
│ │ │ │ └── ShellViewModel.cs
│ │ │ └── WorkflowProject.cs
│ │ ├── HeBianGu.App.Disk
│ │ │ ├── App.config
│ │ │ ├── HeBianGu.App.Disk.csproj
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── logo.ico
│ │ ├── HeBianGu.App.Disk.Share
│ │ │ ├── App.xaml
│ │ │ ├── App.xaml.cs
│ │ │ ├── Controller
│ │ │ │ ├── CustomController.cs
│ │ │ │ ├── ExtendController.cs
│ │ │ │ ├── FriendController.cs
│ │ │ │ ├── LoyoutController.cs
│ │ │ │ └── SendController.cs
│ │ │ ├── Domain
│ │ │ │ ├── AssemblyDomain.cs
│ │ │ │ └── IAssemblyDomain.cs
│ │ │ ├── HeBianGu.App.Disk.Share.projitems
│ │ │ ├── HeBianGu.App.Disk.Share.shproj
│ │ │ ├── View
│ │ │ │ ├── Custom
│ │ │ │ │ ├── CustomControl.xaml
│ │ │ │ │ └── CustomControl.xaml.cs
│ │ │ │ ├── Extend
│ │ │ │ │ ├── ExtendControl.xaml
│ │ │ │ │ └── ExtendControl.xaml.cs
│ │ │ │ ├── Friend
│ │ │ │ │ ├── FriendControl.xaml
│ │ │ │ │ └── FriendControl.xaml.cs
│ │ │ │ ├── Loyout
│ │ │ │ │ ├── ExplorerControl.xaml
│ │ │ │ │ ├── ExplorerControl.xaml.cs
│ │ │ │ │ ├── HomeControl.xaml
│ │ │ │ │ ├── HomeControl.xaml.cs
│ │ │ │ │ ├── NearControl.xaml
│ │ │ │ │ ├── NearControl.xaml.cs
│ │ │ │ │ ├── ShareControl.xaml
│ │ │ │ │ ├── ShareControl.xaml.cs
│ │ │ │ │ ├── SpaceControl.xaml
│ │ │ │ │ └── SpaceControl.xaml.cs
│ │ │ │ ├── Send
│ │ │ │ │ ├── DownControl.xaml
│ │ │ │ │ ├── DownControl.xaml.cs
│ │ │ │ │ ├── SendControl.xaml
│ │ │ │ │ └── SendControl.xaml.cs
│ │ │ │ ├── ShellWindow.xaml
│ │ │ │ └── ShellWindow.xaml.cs
│ │ │ └── ViewModel
│ │ │ ├── Custom
│ │ │ │ └── CustomViewModel.cs
│ │ │ ├── Extend
│ │ │ │ └── CustomViewModel.cs
│ │ │ ├── Friend
│ │ │ │ └── FriendViewModel.cs
│ │ │ ├── Loyout
│ │ │ │ └── LoyoutViewModel.cs
│ │ │ └── Send
│ │ │ └── SendViewModel.cs
│ │ ├── HeBianGu.App.DownLoad
│ │ │ ├── HeBianGu.App.DownLoad.csproj
│ │ │ └── logo.ico
│ │ ├── HeBianGu.App.DownLoad.Share
│ │ │ ├── App.xaml
│ │ │ ├── App.xaml.cs
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── HeBianGu.App.DownLoad.Share.projitems
│ │ │ ├── HeBianGu.App.DownLoad.Share.shproj
│ │ │ ├── MainWindow.xaml
│ │ │ ├── MainWindow.xaml.cs
│ │ │ ├── View
│ │ │ │ ├── Home
│ │ │ │ │ ├── CloudControl.xaml
│ │ │ │ │ ├── CloudControl.xaml.cs
│ │ │ │ │ ├── DownLoadControl.xaml
│ │ │ │ │ ├── DownLoadControl.xaml.cs
│ │ │ │ │ ├── HomeControl.xaml
│ │ │ │ │ ├── HomeControl.xaml.cs
│ │ │ │ │ ├── MessageControl.xaml
│ │ │ │ │ └── MessageControl.xaml.cs
│ │ │ │ ├── Set
│ │ │ │ │ ├── SetControl.xaml
│ │ │ │ │ └── SetControl.xaml.cs
│ │ │ │ └── System
│ │ │ │ ├── LaterControl.xaml
│ │ │ │ └── LaterControl.xaml.cs
│ │ │ └── ViewModel
│ │ │ └── Home
│ │ │ ├── DownLoadItem.cs
│ │ │ └── HomeViewModel.cs
│ │ ├── HeBianGu.App.Manager
│ │ │ ├── HeBianGu.App.Manager.csproj
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Resources
│ │ │ │ ├── config.xml
│ │ │ │ └── unit.xml
│ │ │ ├── logo.ico
│ │ │ └── packages.config
│ │ ├── HeBianGu.App.Manager.Share
│ │ │ ├── App.config
│ │ │ ├── App.xaml
│ │ │ ├── App.xaml.cs
│ │ │ ├── Controller
│ │ │ │ ├── AttachController.cs
│ │ │ │ ├── BaseController.cs
│ │ │ │ ├── CustomController.cs
│ │ │ │ ├── DrawerController.cs
│ │ │ │ ├── FlashController.cs
│ │ │ │ ├── FloatController.cs
│ │ │ │ ├── LoyoutController.cs
│ │ │ │ ├── PanelController.cs
│ │ │ │ └── TransitionController.cs
│ │ │ ├── Domain
│ │ │ │ ├── AssemblyDomain.cs
│ │ │ │ └── IAssemblyDomain.cs
│ │ │ ├── HeBianGu.App.Manager.Share.projitems
│ │ │ ├── HeBianGu.App.Manager.Share.shproj
│ │ │ ├── Model
│ │ │ │ ├── ITz.cs
│ │ │ │ ├── IXh.cs
│ │ │ │ └── Signl.cs
│ │ │ ├── View
│ │ │ │ ├── Attach
│ │ │ │ │ ├── GroupControl.xaml
│ │ │ │ │ ├── GroupControl.xaml.cs
│ │ │ │ │ ├── RandomControl.xaml
│ │ │ │ │ ├── RandomControl.xaml.cs
│ │ │ │ │ ├── VisibleControl.xaml
│ │ │ │ │ └── VisibleControl.xaml.cs
│ │ │ │ ├── Custom
│ │ │ │ │ ├── ExpanderControl.xaml
│ │ │ │ │ ├── ExpanderControl.xaml.cs
│ │ │ │ │ ├── ExplorerControl.xaml
│ │ │ │ │ ├── ExplorerControl.xaml.cs
│ │ │ │ │ ├── ExplorerTreeControl.xaml
│ │ │ │ │ ├── ExplorerTreeControl.xaml.cs
│ │ │ │ │ ├── FilterColumnControl.xaml
│ │ │ │ │ ├── FilterColumnControl.xaml.cs
│ │ │ │ │ ├── FilterControl.xaml
│ │ │ │ │ ├── FilterControl.xaml.cs
│ │ │ │ │ ├── GitTopControl.xaml
│ │ │ │ │ ├── GitTopControl.xaml.cs
│ │ │ │ │ ├── HomeControl.xaml
│ │ │ │ │ ├── HomeControl.xaml.cs
│ │ │ │ │ ├── LeftMenuControl.xaml
│ │ │ │ │ ├── LeftMenuControl.xaml.cs
│ │ │ │ │ ├── PingControl.xaml
│ │ │ │ │ ├── PingControl.xaml.cs
│ │ │ │ │ ├── PropertyGridControl.xaml
│ │ │ │ │ ├── PropertyGridControl.xaml.cs
│ │ │ │ │ ├── ScrollControl.xaml
│ │ │ │ │ ├── ScrollControl.xaml.cs
│ │ │ │ │ ├── ShuttleControl.xaml
│ │ │ │ │ ├── ShuttleControl.xaml.cs
│ │ │ │ │ ├── StepControl.xaml
│ │ │ │ │ └── StepControl.xaml.cs
│ │ │ │ ├── Drawer
│ │ │ │ │ ├── AngleControl.xaml
│ │ │ │ │ ├── AngleControl.xaml.cs
│ │ │ │ │ ├── DrawerOpacityControl.xaml
│ │ │ │ │ ├── DrawerOpacityControl.xaml.cs
│ │ │ │ │ ├── DrawerScaleControl.xaml
│ │ │ │ │ ├── DrawerScaleControl.xaml.cs
│ │ │ │ │ ├── DrawerTranslateControl.xaml
│ │ │ │ │ ├── DrawerTranslateControl.xaml.cs
│ │ │ │ │ ├── GeomotryControl.xaml
│ │ │ │ │ ├── GeomotryControl.xaml.cs
│ │ │ │ │ ├── OtherControl.xaml
│ │ │ │ │ └── OtherControl.xaml.cs
│ │ │ │ ├── Flash
│ │ │ │ │ ├── FlashControl.xaml
│ │ │ │ │ ├── FlashControl.xaml.cs
│ │ │ │ │ ├── HeartControl.xaml
│ │ │ │ │ ├── HeartControl.xaml.cs
│ │ │ │ │ ├── TextControl.xaml
│ │ │ │ │ ├── TextControl.xaml.cs
│ │ │ │ │ ├── WaveControl.xaml
│ │ │ │ │ └── WaveControl.xaml.cs
│ │ │ │ ├── Float
│ │ │ │ │ ├── FloatCircleControl.xaml
│ │ │ │ │ └── FloatCircleControl.xaml.cs
│ │ │ │ ├── Loyout
│ │ │ │ │ ├── HistoryControl.xaml
│ │ │ │ │ ├── HistoryControl.xaml.cs
│ │ │ │ │ ├── HomeAControl.xaml
│ │ │ │ │ ├── HomeAControl.xaml.cs
│ │ │ │ │ ├── RealDataControl.xaml
│ │ │ │ │ └── RealDataControl.xaml.cs
│ │ │ │ ├── Panel
│ │ │ │ │ ├── AnimationControl.xaml
│ │ │ │ │ ├── AnimationControl.xaml.cs
│ │ │ │ │ ├── ArcControl.xaml
│ │ │ │ │ ├── ArcControl.xaml.cs
│ │ │ │ │ ├── AreaControl.xaml
│ │ │ │ │ ├── AreaControl.xaml.cs
│ │ │ │ │ ├── CircleControl.xaml
│ │ │ │ │ ├── CircleControl.xaml.cs
│ │ │ │ │ ├── ContainControl.xaml
│ │ │ │ │ ├── ContainControl.xaml.cs
│ │ │ │ │ ├── CoverControl.xaml
│ │ │ │ │ ├── CoverControl.xaml.cs
│ │ │ │ │ ├── CrossControl.xaml
│ │ │ │ │ ├── CrossControl.xaml.cs
│ │ │ │ │ ├── DockControl.xaml
│ │ │ │ │ ├── DockControl.xaml.cs
│ │ │ │ │ ├── DragControl.xaml
│ │ │ │ │ ├── DragControl.xaml.cs
│ │ │ │ │ ├── HexControl.xaml
│ │ │ │ │ ├── HexControl.xaml.cs
│ │ │ │ │ ├── PageControl.xaml
│ │ │ │ │ └── PageControl.xaml.cs
│ │ │ │ ├── ShellWindow.xaml
│ │ │ │ ├── ShellWindow.xaml.cs
│ │ │ │ └── Transition
│ │ │ │ ├── ClipControl.xaml
│ │ │ │ ├── ClipControl.xaml.cs
│ │ │ │ ├── DefaultControl.xaml
│ │ │ │ ├── DefaultControl.xaml.cs
│ │ │ │ ├── ImageControl.xaml
│ │ │ │ ├── ImageControl.xaml.cs
│ │ │ │ ├── LinearControl.xaml
│ │ │ │ ├── LinearControl.xaml.cs
│ │ │ │ ├── OpacityControl.xaml
│ │ │ │ ├── OpacityControl.xaml.cs
│ │ │ │ ├── RotateControl.xaml
│ │ │ │ ├── RotateControl.xaml.cs
│ │ │ │ ├── ScaleControl.xaml
│ │ │ │ ├── ScaleControl.xaml.cs
│ │ │ │ ├── SkewControl.xaml
│ │ │ │ ├── SkewControl.xaml.cs
│ │ │ │ ├── TranslateControl.xaml
│ │ │ │ └── TranslateControl.xaml.cs
│ │ │ └── ViewModel
│ │ │ ├── Custom
│ │ │ │ ├── CustomViewModel.cs
│ │ │ │ └── Entity
│ │ │ │ ├── IXhtypeViewModelBase.cs
│ │ │ │ ├── IZTypeViewModelBase.cs
│ │ │ │ └── StudentViewModel.cs
│ │ │ ├── Float
│ │ │ │ └── FloatViewModel.cs
│ │ │ ├── Loyout
│ │ │ │ └── LoyoutViewModel.cs
│ │ │ ├── Panel
│ │ │ │ └── PanelViewModel.cs
│ │ │ └── Transition
│ │ │ └── TransitionViewModel.cs
│ │ ├── HeBianGu.App.Map
│ │ │ ├── HeBianGu.App.Map.csproj
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Resources
│ │ │ │ ├── iconfont.css
│ │ │ │ └── 捕获.PNG
│ │ │ └── logo.ico
│ │ ├── HeBianGu.App.Map.Share
│ │ │ ├── App.config
│ │ │ ├── App.xaml
│ │ │ ├── App.xaml.cs
│ │ │ ├── DataSourceLocator.cs
│ │ │ ├── Domain
│ │ │ │ ├── AssemblyDomain.cs
│ │ │ │ └── IAssemblyDomain.cs
│ │ │ ├── HeBianGu.App.Map.Share.projitems
│ │ │ ├── HeBianGu.App.Map.Share.shproj
│ │ │ ├── ReadMe.txt
│ │ │ ├── Theme
│ │ │ │ └── Default.xaml
│ │ │ ├── TiBook.ico
│ │ │ ├── View
│ │ │ │ ├── Dialog
│ │ │ │ │ ├── ConfigSceneControl.xaml
│ │ │ │ │ ├── ConfigSceneControl.xaml.cs
│ │ │ │ │ ├── EquipManagerControl.xaml
│ │ │ │ │ ├── EquipManagerControl.xaml.cs
│ │ │ │ │ ├── MapManagerControl.xaml
│ │ │ │ │ ├── MapManagerControl.xaml.cs
│ │ │ │ │ ├── MapperControl.xaml
│ │ │ │ │ ├── MapperControl.xaml.cs
│ │ │ │ │ ├── SelectTypeControl.xaml
│ │ │ │ │ ├── SelectTypeControl.xaml.cs
│ │ │ │ │ ├── ServerManagerControl.xaml
│ │ │ │ │ ├── ServerManagerControl.xaml.cs
│ │ │ │ │ ├── TasksControl.xaml
│ │ │ │ │ ├── TasksControl.xaml.cs
│ │ │ │ │ ├── UserManagerControl.xaml
│ │ │ │ │ └── UserManagerControl.xaml.cs
│ │ │ │ ├── ShellWindow.xaml
│ │ │ │ └── ShellWindow.xaml.cs
│ │ │ └── ViewModel
│ │ │ └── ShellViewModel.cs
│ │ ├── HeBianGu.App.Media
│ │ │ ├── HeBianGu.App.Media.csproj
│ │ │ └── logo.ico
│ │ ├── HeBianGu.App.Media.Share
│ │ │ ├── App.xaml
│ │ │ ├── App.xaml.cs
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── HeBianGu.App.Media.Share.projitems
│ │ │ ├── HeBianGu.App.Media.Share.shproj
│ │ │ ├── MainWindow.xaml
│ │ │ ├── MainWindow.xaml.cs
│ │ │ ├── View
│ │ │ │ ├── Custom
│ │ │ │ │ ├── CustomControl.xaml
│ │ │ │ │ └── CustomControl.xaml.cs
│ │ │ │ ├── Delete
│ │ │ │ │ ├── DeleteControl.xaml
│ │ │ │ │ └── DeleteControl.xaml.cs
│ │ │ │ ├── Home
│ │ │ │ │ ├── HomeControl.xaml
│ │ │ │ │ └── HomeControl.xaml.cs
│ │ │ │ ├── Layout
│ │ │ │ │ ├── Dialog
│ │ │ │ │ │ ├── EditDialog.xaml
│ │ │ │ │ │ └── EditDialog.xaml.cs
│ │ │ │ │ ├── LayoutControl.xaml
│ │ │ │ │ └── LayoutControl.xaml.cs
│ │ │ │ ├── Performer
│ │ │ │ │ ├── PerformerControl.xaml
│ │ │ │ │ └── PerformerControl.xaml.cs
│ │ │ │ └── Set
│ │ │ │ ├── SetControl.xaml
│ │ │ │ └── SetControl.xaml.cs
│ │ │ └── ViewModel
│ │ │ ├── Custom
│ │ │ │ └── CustomViewModel.cs
│ │ │ ├── Home
│ │ │ │ └── HomeViewModel.cs
│ │ │ ├── Layout
│ │ │ │ └── LayoutViewModel.cs
│ │ │ ├── Performer
│ │ │ │ └── PerformerViewModel.cs
│ │ │ └── Set
│ │ │ └── SetViewModel.cs
│ │ ├── HeBianGu.App.Menu
│ │ │ ├── HeBianGu.App.Menu.csproj
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── logo.ico
│ │ ├── HeBianGu.App.Menu.Share
│ │ │ ├── App.config
│ │ │ ├── App.xaml
│ │ │ ├── App.xaml.cs
│ │ │ ├── Controller
│ │ │ │ ├── CustomController.cs
│ │ │ │ ├── FlashController.cs
│ │ │ │ ├── FluidController.cs
│ │ │ │ ├── LoyoutController.cs
│ │ │ │ ├── RandomController.cs
│ │ │ │ └── TimeController.cs
│ │ │ ├── Domain
│ │ │ │ ├── AssemblyDomain.cs
│ │ │ │ └── IAssemblyDomain.cs
│ │ │ ├── HeBianGu.App.Menu.Share.projitems
│ │ │ ├── HeBianGu.App.Menu.Share.shproj
│ │ │ ├── View
│ │ │ │ ├── Flash
│ │ │ │ │ ├── FlashBackControl.xaml
│ │ │ │ │ ├── FlashBackControl.xaml.cs
│ │ │ │ │ ├── FlashBounceControl.xaml
│ │ │ │ │ ├── FlashBounceControl.xaml.cs
│ │ │ │ │ ├── FlashControl.xaml
│ │ │ │ │ ├── FlashControl.xaml.cs
│ │ │ │ │ ├── FlashElasticControl.xaml
│ │ │ │ │ ├── FlashElasticControl.xaml.cs
│ │ │ │ │ ├── FlashGridControl.xaml
│ │ │ │ │ ├── FlashGridControl.xaml.cs
│ │ │ │ │ ├── FlashOriginControl.xaml
│ │ │ │ │ ├── FlashOriginControl.xaml.cs
│ │ │ │ │ ├── NormalControl.xaml
│ │ │ │ │ └── NormalControl.xaml.cs
│ │ │ │ ├── Fluid
│ │ │ │ │ ├── FluidHomeControl.xaml
│ │ │ │ │ ├── FluidHomeControl.xaml.cs
│ │ │ │ │ ├── FluidStackControl.xaml
│ │ │ │ │ ├── FluidStackControl.xaml.cs
│ │ │ │ │ ├── FluidUniformControl.xaml
│ │ │ │ │ └── FluidUniformControl.xaml.cs
│ │ │ │ ├── Random
│ │ │ │ │ ├── BackControl.xaml
│ │ │ │ │ ├── BackControl.xaml.cs
│ │ │ │ │ ├── BounceControl.xaml
│ │ │ │ │ ├── BounceControl.xaml.cs
│ │ │ │ │ ├── ElasticControl.xaml
│ │ │ │ │ ├── ElasticControl.xaml.cs
│ │ │ │ │ ├── HStackControl.xaml
│ │ │ │ │ ├── HStackControl.xaml.cs
│ │ │ │ │ ├── IndexControl.xaml
│ │ │ │ │ ├── IndexControl.xaml.cs
│ │ │ │ │ ├── OriginControl.xaml
│ │ │ │ │ ├── OriginControl.xaml.cs
│ │ │ │ │ ├── RandomControl.xaml
│ │ │ │ │ ├── RandomControl.xaml.cs
│ │ │ │ │ ├── StackControl.xaml
│ │ │ │ │ ├── StackControl.xaml.cs
│ │ │ │ │ ├── UniformControl.xaml
│ │ │ │ │ └── UniformControl.xaml.cs
│ │ │ │ ├── ShellWindow.xaml
│ │ │ │ ├── ShellWindow.xaml.cs
│ │ │ │ └── Time
│ │ │ │ ├── TimeBackControl.xaml
│ │ │ │ ├── TimeBackControl.xaml.cs
│ │ │ │ ├── TimeBounceControl.xaml
│ │ │ │ ├── TimeBounceControl.xaml.cs
│ │ │ │ ├── TimeControl.xaml
│ │ │ │ ├── TimeControl.xaml.cs
│ │ │ │ ├── TimeElasticControl.xaml
│ │ │ │ ├── TimeElasticControl.xaml.cs
│ │ │ │ ├── TimeHStackControl.xaml
│ │ │ │ ├── TimeHStackControl.xaml.cs
│ │ │ │ ├── TimeStackControl.xaml
│ │ │ │ ├── TimeStackControl.xaml.cs
│ │ │ │ ├── TimeUniformControl.xaml
│ │ │ │ └── TimeUniformControl.xaml.cs
│ │ │ └── ViewModel
│ │ │ ├── Custom
│ │ │ │ └── CustomViewModel.cs
│ │ │ ├── Fluid
│ │ │ │ └── FluidViewModel.cs
│ │ │ └── Loyout
│ │ │ └── LoyoutViewModel.cs
│ │ ├── HeBianGu.App.Movie
│ │ │ ├── App.xaml
│ │ │ ├── App.xaml.cs
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── HeBianGu.App.Movie.csproj
│ │ │ ├── MainWindow.xaml
│ │ │ ├── MainWindow.xaml.cs
│ │ │ ├── Provider
│ │ │ │ └── DataSourceLocator.cs
│ │ │ ├── ViewModel
│ │ │ │ └── ShellViewModel.cs
│ │ │ └── logo.ico
│ │ ├── HeBianGu.App.Music
│ │ │ ├── App.xaml
│ │ │ ├── App.xaml.cs
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── HeBianGu.App.Music.csproj
│ │ │ ├── MainWindow.xaml
│ │ │ ├── MainWindow.xaml.cs
│ │ │ ├── View
│ │ │ │ ├── Custom
│ │ │ │ │ ├── CustomControl.xaml
│ │ │ │ │ └── CustomControl.xaml.cs
│ │ │ │ ├── Home
│ │ │ │ │ ├── HomeControl.xaml
│ │ │ │ │ ├── HomeControl.xaml.cs
│ │ │ │ │ ├── RecommendControl.xaml
│ │ │ │ │ └── RecommendControl.xaml.cs
│ │ │ │ ├── Layout
│ │ │ │ │ ├── LayoutControl.xaml
│ │ │ │ │ └── LayoutControl.xaml.cs
│ │ │ │ └── Set
│ │ │ │ ├── SetControl.xaml
│ │ │ │ └── SetControl.xaml.cs
│ │ │ ├── ViewModel
│ │ │ │ ├── Custom
│ │ │ │ │ └── CustomViewModel.cs
│ │ │ │ ├── Home
│ │ │ │ │ └── HomeViewModel.cs
│ │ │ │ ├── Layout
│ │ │ │ │ └── LayoutViewModel.cs
│ │ │ │ └── Set
│ │ │ │ └── SetViewModel.cs
│ │ │ └── logo.ico
│ │ ├── HeBianGu.App.Office
│ │ │ ├── HeBianGu.App.Office.csproj
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Resources
│ │ │ │ └── iconfont.css
│ │ │ └── logo.ico
│ │ ├── HeBianGu.App.Office.Share
│ │ │ ├── App.config
│ │ │ ├── App.xaml
│ │ │ ├── App.xaml.cs
│ │ │ ├── Controller
│ │ │ │ └── LoyoutController.cs
│ │ │ ├── DataSourceLocator.cs
│ │ │ ├── Domain
│ │ │ │ ├── AssemblyDomain.cs
│ │ │ │ └── IAssemblyDomain.cs
│ │ │ ├── HeBianGu.App.Office.Share.projitems
│ │ │ ├── HeBianGu.App.Office.Share.shproj
│ │ │ ├── View
│ │ │ │ ├── Loyout
│ │ │ │ │ ├── AccountControl.xaml
│ │ │ │ │ ├── AccountControl.xaml.cs
│ │ │ │ │ ├── ConnectControl.xaml
│ │ │ │ │ ├── ConnectControl.xaml.cs
│ │ │ │ │ ├── HomeControl.xaml
│ │ │ │ │ ├── HomeControl.xaml.cs
│ │ │ │ │ ├── InfoControl.xaml
│ │ │ │ │ ├── InfoControl.xaml.cs
│ │ │ │ │ ├── NewControl.xaml
│ │ │ │ │ ├── NewControl.xaml.cs
│ │ │ │ │ ├── OpenControl.xaml
│ │ │ │ │ └── OpenControl.xaml.cs
│ │ │ │ ├── ShellWindow.xaml
│ │ │ │ └── ShellWindow.xaml.cs
│ │ │ └── ViewModel
│ │ │ ├── Loyout
│ │ │ │ └── LoyoutViewModel.cs
│ │ │ └── ShellViewModel.cs
│ │ ├── HeBianGu.App.Repository
│ │ │ ├── HeBianGu.App.Repository.csproj
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── logo.ico
│ │ ├── HeBianGu.App.Repository.Share
│ │ │ ├── App.config
│ │ │ ├── App.xaml
│ │ │ ├── App.xaml.cs
│ │ │ ├── Domain
│ │ │ │ ├── AssemblyDomain.cs
│ │ │ │ └── IAssemblyDomain.cs
│ │ │ ├── HeBianGu.App.Repository.Share.projitems
│ │ │ ├── HeBianGu.App.Repository.Share.shproj
│ │ │ ├── Model
│ │ │ │ ├── Base
│ │ │ │ │ └── IndentifyEntityBase.cs
│ │ │ │ ├── Indentify
│ │ │ │ │ ├── hi_dd_author.cs
│ │ │ │ │ ├── hi_dd_log.cs
│ │ │ │ │ ├── hi_dd_role.cs
│ │ │ │ │ └── hi_dd_user.cs
│ │ │ │ ├── mbc_db_areatype.cs
│ │ │ │ ├── mbc_db_articulationtype.cs
│ │ │ │ ├── mbc_db_extendtype.cs
│ │ │ │ ├── mbc_db_fromtype.cs
│ │ │ │ ├── mbc_db_mediatype.cs
│ │ │ │ ├── mbc_db_modelbase.cs
│ │ │ │ ├── mbc_db_tagtype.cs
│ │ │ │ ├── mbc_db_viptype.cs
│ │ │ │ ├── mbc_dc_case.cs
│ │ │ │ ├── mbc_dv_image.cs
│ │ │ │ ├── mbc_dv_movie.cs
│ │ │ │ └── mbc_dv_movieimage.cs
│ │ │ └── View
│ │ │ ├── ShellWindow.xaml
│ │ │ └── ShellWindow.xaml.cs
│ │ ├── HeBianGu.App.Scene
│ │ │ ├── HeBianGu.App.Scene.csproj
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Resources
│ │ │ │ └── iconfont.css
│ │ │ └── logo.ico
│ │ ├── HeBianGu.App.Scene.Share
│ │ │ ├── App.config
│ │ │ ├── App.xaml
│ │ │ ├── App.xaml.cs
│ │ │ ├── DataSourceLocator.cs
│ │ │ ├── Domain
│ │ │ │ ├── AssemblyDomain.cs
│ │ │ │ └── IAssemblyDomain.cs
│ │ │ ├── HeBianGu.App.Scene.Share.projitems
│ │ │ ├── HeBianGu.App.Scene.Share.shproj
│ │ │ ├── View
│ │ │ │ ├── Dialog
│ │ │ │ │ ├── ConfigSceneControl.xaml
│ │ │ │ │ ├── ConfigSceneControl.xaml.cs
│ │ │ │ │ ├── SelectTypeControl.xaml
│ │ │ │ │ └── SelectTypeControl.xaml.cs
│ │ │ │ ├── ShellWindow.xaml
│ │ │ │ └── ShellWindow.xaml.cs
│ │ │ └── ViewModel
│ │ │ └── ShellViewModel.cs
│ │ ├── HeBianGu.App.Screen
│ │ │ ├── HeBianGu.App.Screen.csproj
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── logo.ico
│ │ ├── HeBianGu.App.Screen.Share
│ │ │ ├── App.config
│ │ │ ├── App.xaml
│ │ │ ├── App.xaml.cs
│ │ │ ├── HeBianGu.App.Screen.Share.projitems
│ │ │ ├── HeBianGu.App.Screen.Share.shproj
│ │ │ ├── Provider
│ │ │ │ └── DataSourceLocator.cs
│ │ │ ├── View
│ │ │ │ ├── MainWindow.xaml
│ │ │ │ └── MainWindow.xaml.cs
│ │ │ └── ViewModel
│ │ │ └── ShellViewModel.cs
│ │ ├── HeBianGu.App.Tool
│ │ │ ├── HeBianGu.App.Tool.csproj
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── logo.ico
│ │ ├── HeBianGu.App.Tool.Share
│ │ │ ├── App.config
│ │ │ ├── App.xaml
│ │ │ ├── App.xaml.cs
│ │ │ ├── Controller
│ │ │ │ ├── CommonController.cs
│ │ │ │ ├── CustomController.cs
│ │ │ │ ├── FavoriteController.cs
│ │ │ │ └── LoyoutController.cs
│ │ │ ├── DataSourceLocator.cs
│ │ │ ├── Domain
│ │ │ │ ├── AssemblyDomain.cs
│ │ │ │ └── IAssemblyDomain.cs
│ │ │ ├── HeBianGu.App.Tool.Share.projitems
│ │ │ ├── HeBianGu.App.Tool.Share.shproj
│ │ │ ├── Model
│ │ │ │ └── FileBindModel.cs
│ │ │ ├── Provider
│ │ │ │ ├── Converter.cs
│ │ │ │ ├── DirectoryHelper.cs
│ │ │ │ ├── IconHelper.cs
│ │ │ │ ├── JsonSerializeEx.cs
│ │ │ │ └── SysTemConfiger.cs
│ │ │ ├── View
│ │ │ │ ├── Common
│ │ │ │ │ ├── CommonControl.xaml
│ │ │ │ │ └── CommonControl.xaml.cs
│ │ │ │ ├── Custom
│ │ │ │ │ ├── CustomControl.xaml
│ │ │ │ │ └── CustomControl.xaml.cs
│ │ │ │ ├── Favorite
│ │ │ │ │ ├── FavoriteControl.xaml
│ │ │ │ │ └── FavoriteControl.xaml.cs
│ │ │ │ ├── Loyout
│ │ │ │ │ ├── HomeControl.xaml
│ │ │ │ │ └── HomeControl.xaml.cs
│ │ │ │ ├── ShellWindow.xaml
│ │ │ │ └── ShellWindow.xaml.cs
│ │ │ └── ViewModel
│ │ │ ├── Common
│ │ │ │ └── CommonViewModel.cs
│ │ │ ├── Custom
│ │ │ │ └── CustomViewModel.cs
│ │ │ ├── Favorite
│ │ │ │ └── FavoriteViewModel.cs
│ │ │ ├── Loyout
│ │ │ │ └── LoyoutViewModel.cs
│ │ │ └── ShellViewModel.cs
│ │ ├── HeBianGu.App.Touch
│ │ │ ├── HeBianGu.App.Touch.csproj
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Resources
│ │ │ │ ├── SystemKeyBoard.exe
│ │ │ │ ├── demo.css
│ │ │ │ ├── demo_index.html
│ │ │ │ ├── iconfont.css
│ │ │ │ ├── iconfont.eot
│ │ │ │ ├── iconfont.js
│ │ │ │ ├── iconfont.json
│ │ │ │ ├── iconfont.ttf
│ │ │ │ ├── 女.png
│ │ │ │ ├── 男.png
│ │ │ │ ├── 勾1.png
│ │ │ │ ├── 女医生.png
│ │ │ │ ├── 身高测量.png
│ │ │ │ ├── 体温测量示意图.png
│ │ │ │ ├── 血氧测量示意图.png
│ │ │ │ ├── 脂肪测量示意图19.12.30.png
│ │ │ │ └── 血压测量示意图19.12.30.png
│ │ │ └── logo.ico
│ │ └── HeBianGu.App.Touch.Share
│ │ ├── App.config
│ │ ├── App.xaml
│ │ ├── App.xaml.cs
│ │ ├── Controller
│ │ │ ├── LoginController.cs
│ │ │ ├── LoyoutController.cs
│ │ │ ├── ReportController.cs
│ │ │ └── SettingController.cs
│ │ ├── DataSourceLocator.cs
│ │ ├── Domain
│ │ │ ├── AssemblyDomain.cs
│ │ │ └── IAssemblyDomain.cs
│ │ ├── HeBianGu.App.Touch.Share.projitems
│ │ ├── HeBianGu.App.Touch.Share.shproj
│ │ ├── Model
│ │ │ ├── BmiLinkActionEntity.cs
│ │ │ ├── FatLinkActionEntity.cs
│ │ │ ├── ModelBase
│ │ │ │ └── LinkActionEntity.cs
│ │ │ ├── OxygenLinkActionEntity.cs
│ │ │ ├── PressureLinkActionEntity.cs
│ │ │ └── TemperatureLinkActionEntity.cs
│ │ ├── Provider
│ │ │ ├── DataValueEntity.cs
│ │ │ ├── FButtonCountDown.cs
│ │ │ ├── KeyHelper.cs
│ │ │ ├── LastLinkActionsToCollapsedConverter.cs
│ │ │ ├── MonitorActiveService.cs
│ │ │ └── TextBoxGotFocusBehavior.cs
│ │ ├── Theme
│ │ │ └── Default.xaml
│ │ ├── View
│ │ │ ├── Login
│ │ │ │ ├── LoginControl.xaml
│ │ │ │ └── LoginControl.xaml.cs
│ │ │ ├── Loyout
│ │ │ │ ├── BmiControl.xaml
│ │ │ │ ├── BmiControl.xaml.cs
│ │ │ │ ├── FatControl.xaml
│ │ │ │ ├── FatControl.xaml.cs
│ │ │ │ ├── HomeControl.xaml
│ │ │ │ ├── HomeControl.xaml.cs
│ │ │ │ ├── OxygenControl.xaml
│ │ │ │ ├── OxygenControl.xaml.cs
│ │ │ │ ├── PressureControl.xaml
│ │ │ │ ├── PressureControl.xaml.cs
│ │ │ │ ├── TemperatureControl.xaml
│ │ │ │ └── TemperatureControl.xaml.cs
│ │ │ ├── Report
│ │ │ │ ├── ReportControl.xaml
│ │ │ │ └── ReportControl.xaml.cs
│ │ │ ├── Setting
│ │ │ │ ├── AdvanceControl.xaml
│ │ │ │ ├── AdvanceControl.xaml.cs
│ │ │ │ ├── BasicControl.xaml
│ │ │ │ ├── BasicControl.xaml.cs
│ │ │ │ ├── DeviceControl.xaml
│ │ │ │ ├── DeviceControl.xaml.cs
│ │ │ │ ├── SettingControl.xaml
│ │ │ │ ├── SettingControl.xaml.cs
│ │ │ │ ├── ThemeControl.xaml
│ │ │ │ ├── ThemeControl.xaml.cs
│ │ │ │ ├── UpLoadControl.xaml
│ │ │ │ └── UpLoadControl.xaml.cs
│ │ │ ├── Share
│ │ │ │ ├── AdminLoginControl.xaml
│ │ │ │ ├── AdminLoginControl.xaml.cs
│ │ │ │ ├── AgrControl.xaml
│ │ │ │ ├── AgrControl.xaml.cs
│ │ │ │ ├── AwaitControl.xaml
│ │ │ │ ├── AwaitControl.xaml.cs
│ │ │ │ ├── CardIDControl.xaml
│ │ │ │ ├── CardIDControl.xaml.cs
│ │ │ │ ├── GuideMessageControl.xaml
│ │ │ │ ├── GuideMessageControl.xaml.cs
│ │ │ │ ├── KeyBoardControl.xaml
│ │ │ │ ├── KeyBoardControl.xaml.cs
│ │ │ │ ├── SexControl.xaml
│ │ │ │ └── SexControl.xaml.cs
│ │ │ ├── ShellWindow.xaml
│ │ │ └── ShellWindow.xaml.cs
│ │ └── ViewModel
│ │ ├── Login
│ │ │ └── LoginViewModel.cs
│ │ ├── Loyout
│ │ │ └── LoyoutViewModel.cs
│ │ ├── Report
│ │ │ └── ReportViewModel.cs
│ │ ├── Setting
│ │ │ └── SettingViewModel.cs
│ │ └── ShellViewModel.cs
│ ├── ApplicationNuget
│ │ ├── HeBianGu.App.Above
│ │ │ ├── App.xaml
│ │ │ ├── App.xaml.cs
│ │ │ ├── HeBianGu.App.Above.csproj
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Resources
│ │ │ │ ├── demo.css
│ │ │ │ ├── demo_index.html
│ │ │ │ ├── iconfont.css
│ │ │ │ ├── iconfont.js
│ │ │ │ └── propertyconfig.xml
│ │ │ ├── logo.ico
│ │ │ └── packages.config
│ │ ├── HeBianGu.App.Blur
│ │ │ ├── HeBianGu.App.Blur.csproj
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Resources
│ │ │ │ ├── data.json
│ │ │ │ ├── demo.css
│ │ │ │ ├── demo_index.html
│ │ │ │ ├── iconfont.css
│ │ │ │ └── iconfont.js
│ │ │ ├── logo.ico
│ │ │ └── packages.config
│ │ ├── HeBianGu.App.Chart
│ │ │ ├── HeBianGu.App.Chart.csproj
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Resources
│ │ │ │ ├── demo.css
│ │ │ │ ├── demo_index.html
│ │ │ │ ├── iconfont.css
│ │ │ │ └── iconfont.js
│ │ │ ├── logo.ico
│ │ │ └── packages.config
│ │ ├── HeBianGu.App.Creator
│ │ │ ├── HeBianGu.App.Creator.csproj
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Resources
│ │ │ │ ├── demo.css
│ │ │ │ ├── demo_index.html
│ │ │ │ ├── iconfont.css
│ │ │ │ └── iconfont.js
│ │ │ ├── logo.ico
│ │ │ └── packages.config
│ │ ├── HeBianGu.App.Disk
│ │ │ ├── HeBianGu.App.Disk.csproj
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Resources
│ │ │ │ ├── demo.css
│ │ │ │ ├── demo_index.html
│ │ │ │ ├── iconfont.css
│ │ │ │ └── iconfont.js
│ │ │ ├── logo.ico
│ │ │ └── packages.config
│ │ ├── HeBianGu.App.DownLoad
│ │ │ ├── HeBianGu.App.DownLoad.csproj
│ │ │ └── logo.ico
│ │ ├── HeBianGu.App.Manager
│ │ │ ├── HeBianGu.App.Manager.csproj
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Resources
│ │ │ │ ├── config.xml
│ │ │ │ ├── demo.css
│ │ │ │ ├── demo_index.html
│ │ │ │ ├── iconfont.css
│ │ │ │ ├── iconfont.js
│ │ │ │ └── unit.xml
│ │ │ ├── logo.ico
│ │ │ └── packages.config
│ │ ├── HeBianGu.App.Map
│ │ │ ├── HeBianGu.App.Map.csproj
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Resources
│ │ │ │ ├── demo.css
│ │ │ │ ├── demo_index.html
│ │ │ │ ├── iconfont.css
│ │ │ │ ├── iconfont.js
│ │ │ │ └── 捕获.PNG
│ │ │ ├── logo.ico
│ │ │ └── packages.config
│ │ ├── HeBianGu.App.Media
│ │ │ ├── HeBianGu.App.Media.csproj
│ │ │ └── logo.ico
│ │ ├── HeBianGu.App.Menu
│ │ │ ├── HeBianGu.App.Menu.csproj
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Resources
│ │ │ │ ├── demo.css
│ │ │ │ ├── demo_index.html
│ │ │ │ ├── iconfont.css
│ │ │ │ └── iconfont.js
│ │ │ ├── logo.ico
│ │ │ └── packages.config
│ │ ├── HeBianGu.App.Office
│ │ │ ├── HeBianGu.App.Office.csproj
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Resources
│ │ │ │ ├── demo.css
│ │ │ │ ├── demo_index.html
│ │ │ │ ├── iconfont.css
│ │ │ │ └── iconfont.js
│ │ │ ├── logo.ico
│ │ │ └── packages.config
│ │ ├── HeBianGu.App.Repository
│ │ │ ├── HeBianGu.App.Repository.csproj
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Resources
│ │ │ │ ├── demo.css
│ │ │ │ ├── demo_index.html
│ │ │ │ ├── iconfont.css
│ │ │ │ └── iconfont.js
│ │ │ ├── logo.ico
│ │ │ └── packages.config
│ │ ├── HeBianGu.App.Scene
│ │ │ ├── HeBianGu.App.Scene.csproj
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Resources
│ │ │ │ ├── demo.css
│ │ │ │ ├── demo_index.html
│ │ │ │ ├── iconfont.css
│ │ │ │ └── iconfont.js
│ │ │ ├── logo.ico
│ │ │ └── packages.config
│ │ ├── HeBianGu.App.Screen
│ │ │ ├── HeBianGu.App.Screen.csproj
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Resources
│ │ │ │ ├── demo.css
│ │ │ │ ├── demo_index.html
│ │ │ │ ├── iconfont.css
│ │ │ │ └── iconfont.js
│ │ │ ├── logo.ico
│ │ │ └── packages.config
│ │ ├── HeBianGu.App.Tool
│ │ │ ├── HeBianGu.App.Tool.csproj
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Resources
│ │ │ │ ├── demo.css
│ │ │ │ ├── demo_index.html
│ │ │ │ ├── iconfont.css
│ │ │ │ └── iconfont.js
│ │ │ ├── logo.ico
│ │ │ └── packages.config
│ │ └── HeBianGu.App.Touch
│ │ ├── HeBianGu.App.Touch.csproj
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Resources
│ │ │ ├── SystemKeyBoard.exe
│ │ │ ├── demo.css
│ │ │ ├── demo_index.html
│ │ │ ├── iconfont.css
│ │ │ ├── iconfont.eot
│ │ │ ├── iconfont.js
│ │ │ ├── iconfont.json
│ │ │ ├── iconfont.ttf
│ │ │ ├── 女.png
│ │ │ ├── 男.png
│ │ │ ├── 勾1.png
│ │ │ ├── 女医生.png
│ │ │ ├── 身高测量.png
│ │ │ ├── 体温测量示意图.png
│ │ │ ├── 血氧测量示意图.png
│ │ │ ├── 脂肪测量示意图19.12.30.png
│ │ │ └── 血压测量示意图19.12.30.png
│ │ ├── logo.ico
│ │ └── packages.config
│ ├── Base
│ │ ├── HeBianGu.Base.WpfBase
│ │ │ ├── HeBianGu.Base.WpfBase.csproj
│ │ │ └── Resources
│ │ │ ├── demo.css
│ │ │ ├── demo_index.html
│ │ │ ├── iconfont.css
│ │ │ ├── iconfont.eot
│ │ │ ├── iconfont.js
│ │ │ └── iconfont.ttf
│ │ └── HeBianGu.Base.WpfBase.Share
│ │ ├── AssemblyInfo.cs
│ │ ├── Attach
│ │ │ ├── Cattach.Attach.cs
│ │ │ ├── Cattach.Behaviors.cs
│ │ │ ├── Cattach.Caption.cs
│ │ │ ├── Cattach.Except.cs
│ │ │ ├── Cattach.Focus.cs
│ │ │ ├── Cattach.Icon.cs
│ │ │ ├── Cattach.Item.cs
│ │ │ ├── Cattach.Layout.cs
│ │ │ ├── Cattach.MouseOver.cs
│ │ │ ├── Cattach.Press.cs
│ │ │ ├── Cattach.Search.cs
│ │ │ ├── Cattach.Select.cs
│ │ │ ├── Cattach.Style.cs
│ │ │ ├── Cattach.Title.cs
│ │ │ ├── Cattach.Window.cs
│ │ │ ├── Cattach.cs
│ │ │ ├── ControlAttachProperty.cs
│ │ │ └── ItemsControlAttach.cs
│ │ ├── Command
│ │ │ ├── CollapsedOfOpacityCommand.cs
│ │ │ ├── ProcessCommand.cs
│ │ │ └── VisibleOfOpacityCommand.cs
│ │ ├── Converter
│ │ │ ├── Converter.Bool.cs
│ │ │ ├── Converter.Brush.cs
│ │ │ ├── Converter.DateTime.cs
│ │ │ ├── Converter.Double.cs
│ │ │ ├── Converter.File.cs
│ │ │ ├── Converter.IEnumerable.cs
│ │ │ ├── Converter.Image.cs
│ │ │ ├── Converter.ItemsControl.cs
│ │ │ ├── Converter.Math.cs
│ │ │ ├── Converter.String.cs
│ │ │ ├── Converter.Type.cs
│ │ │ ├── Converter.Visibility.cs
│ │ │ ├── UIConverter.cs
│ │ │ └── XConverter.cs
│ │ ├── HeBianGu.Base.WpfBase.Share.projitems
│ │ ├── HeBianGu.Base.WpfBase.Share.shproj
│ │ ├── Interactivity
│ │ │ ├── Provider
│ │ │ │ ├── AttachableCollection.cs
│ │ │ │ ├── Behavior.cs
│ │ │ │ ├── BehaviorCollection.cs
│ │ │ │ ├── ComparisonLogic.cs
│ │ │ │ ├── Core
│ │ │ │ │ ├── ActionCommand.cs
│ │ │ │ │ ├── ComparisonCondition.cs
│ │ │ │ │ ├── ComparisonConditionType.cs
│ │ │ │ │ ├── ConditionCollection.cs
│ │ │ │ │ ├── ConditionalExpression.cs
│ │ │ │ │ ├── DataTrigger.cs
│ │ │ │ │ ├── ExtendedVisualStateManager.cs
│ │ │ │ │ ├── ICondition.cs
│ │ │ │ │ └── SetDataStoreValueAction.cs
│ │ │ │ ├── CustomPropertyValueEditorAttribute.cs
│ │ │ │ ├── DataBindingHelper.cs
│ │ │ │ ├── DefaultTriggerAttribute.cs
│ │ │ │ ├── DependencyObjectHelper.cs
│ │ │ │ ├── EventObserver.cs
│ │ │ │ ├── EventTriggerBase.cs
│ │ │ │ ├── IAttachedObject.cs
│ │ │ │ ├── ITickTimer.cs
│ │ │ │ ├── Interaction.cs
│ │ │ │ ├── InteractionContext.cs
│ │ │ │ ├── InvokeCommandAction.cs
│ │ │ │ ├── NameResolver.cs
│ │ │ │ ├── ScreenType.cs
│ │ │ │ ├── Serializer.cs
│ │ │ │ ├── TargetedTriggerAction.cs
│ │ │ │ ├── TriggerAction.cs
│ │ │ │ ├── TriggerActionCollection.cs
│ │ │ │ ├── TriggerBase.cs
│ │ │ │ ├── TriggerCollection.cs
│ │ │ │ ├── TypeConstraintAttribute.cs
│ │ │ │ ├── TypeConverterHelper.cs
│ │ │ │ └── VisualStateUtilities.cs
│ │ │ └── Service
│ │ │ ├── Behavior
│ │ │ │ ├── ConditionBehavior.cs
│ │ │ │ ├── Custom
│ │ │ │ │ ├── AutoCompleteBehavior.cs
│ │ │ │ │ ├── AutoDisabledImageBehavior.cs
│ │ │ │ │ ├── ClickSelectedStateBehavior.cs
│ │ │ │ │ ├── CloseTabItemAction.cs
│ │ │ │ │ ├── CloseWindowAction.cs
│ │ │ │ │ ├── CloseWindowBehavior.cs
│ │ │ │ │ ├── ClosingWindowBehavior.cs
│ │ │ │ │ ├── ContextMenuDisplayBehavior.cs
│ │ │ │ │ ├── DataGridRowDragBehavior.cs
│ │ │ │ │ ├── DataGridRowIndexBehavior.cs
│ │ │ │ │ ├── DeferredScrollBehavior.cs
│ │ │ │ │ ├── DragMoveElementBehavior.cs
│ │ │ │ │ ├── DragPositionBehavior.cs
│ │ │ │ │ ├── ElementDragStateBehavior.cs
│ │ │ │ │ ├── FlashBehavior.cs
│ │ │ │ │ ├── ItemsControlButtonBehavior.cs
│ │ │ │ │ ├── ItemsSourceButtonBehavior.cs
│ │ │ │ │ ├── ListBoxSelectAllCheckBoxBehavior.cs
│ │ │ │ │ ├── ListDragBlendBehavior.cs
│ │ │ │ │ ├── ListDropBlendBehavior.cs
│ │ │ │ │ ├── ListViewColumnAutoSizeBehavior.cs
│ │ │ │ │ ├── ListViewSortBehavior.cs
│ │ │ │ │ ├── MaskedTextBoxBehavior.cs
│ │ │ │ │ ├── MouseGestureScrollViewerBehavior.cs
│ │ │ │ │ ├── MultiSelectTreeViewBehavior.cs
│ │ │ │ │ ├── NumericTextBoxBehavior.cs
│ │ │ │ │ ├── OpenTargetInTabControlAction.cs
│ │ │ │ │ ├── QinBehavior.cs
│ │ │ │ │ ├── ScrollToTargetAction.cs
│ │ │ │ │ ├── ScrollViewMouseDragBehavior.cs
│ │ │ │ │ ├── ScrollbarPreviewBehavior.cs
│ │ │ │ │ ├── ScrollingPreviewBehavior.cs
│ │ │ │ │ ├── ScrollingTrigger.cs
│ │ │ │ │ ├── SearchTabTextBoxBehvior.cs
│ │ │ │ │ ├── SelectListBoxItemElementBehavior.cs
│ │ │ │ │ ├── SelectTextOnFocusBehavior.cs
│ │ │ │ │ ├── SelectZIndexElementBehavior.cs
│ │ │ │ │ ├── SelectedItemsCollectionSynchronizerBehavior.cs
│ │ │ │ │ ├── SelectorAutoClearBehavior.cs
│ │ │ │ │ ├── SumSourceContentControlBehavior.cs
│ │ │ │ │ ├── SynchronizedScrollingBehavior.cs
│ │ │ │ │ ├── TextBoxSelectionStartBehavior.cs
│ │ │ │ │ ├── ViewportSynchronizerBehavior.cs
│ │ │ │ │ ├── VisibilityCollapsedOpacityBehavior.cs
│ │ │ │ │ └── WatermarkTextBehavior.cs
│ │ │ │ ├── DataStateBehavior.cs
│ │ │ │ ├── DataStoreChangedTrigger.cs
│ │ │ │ ├── Input
│ │ │ │ │ ├── KeyTrigger.cs
│ │ │ │ │ └── TranslateZoomRotateBehavior.cs
│ │ │ │ └── Layout
│ │ │ │ ├── FluidMoveBehavior.cs
│ │ │ │ └── MouseDragElementBehavior.cs
│ │ │ └── Trigger
│ │ │ ├── CallMethodAction.cs
│ │ │ ├── ChangePropertyAction.cs
│ │ │ ├── EventTrigger.cs
│ │ │ ├── GoToStateAction.cs
│ │ │ ├── LaunchUriOrFileAction.cs
│ │ │ ├── Media
│ │ │ │ ├── PlaySoundAction.cs
│ │ │ │ ├── StoryboardAction.cs
│ │ │ │ ├── StoryboardTrigger.cs
│ │ │ │ └── TransitionEffect.cs
│ │ │ ├── PropertyChangedTrigger.cs
│ │ │ ├── PrototypingActions.cs
│ │ │ ├── RemoveElementAction.cs
│ │ │ └── TimerTrigger.cs
│ │ ├── Mvvm
│ │ │ ├── RelayCommand.cs
│ │ │ ├── TriggerNotifyPropertyChange.cs
│ │ │ └── ViewModelBase
│ │ │ ├── IModelViewModel.cs
│ │ │ ├── ModelViewModel.cs
│ │ │ ├── NotifyPropertyChanged.cs
│ │ │ ├── NotifyPropertyChangedBase.cs
│ │ │ ├── ObservableSourceViewModel.cs
│ │ │ ├── SelectViewModel.cs
│ │ │ ├── TestViewModel.cs
│ │ │ └── TreeNodeBase.cs
│ │ ├── Service
│ │ │ ├── Action
│ │ │ │ ├── IAction.cs
│ │ │ │ ├── LinkActionGroup.cs
│ │ │ │ └── LinkActionGroups.cs
│ │ │ ├── Attribute
│ │ │ │ └── ColumnAttribute.cs
│ │ │ ├── Cache
│ │ │ │ ├── ICache.cs
│ │ │ │ ├── MemoryCache.cs
│ │ │ │ └── MemoryCacheService.cs
│ │ │ ├── ClipBoard.cs
│ │ │ ├── Extension
│ │ │ │ ├── ElementExtention.cs
│ │ │ │ ├── GeometryExtension.cs
│ │ │ │ ├── MathExtensions.cs
│ │ │ │ └── ObjectExtension.cs
│ │ │ ├── HsbaColor.cs
│ │ │ ├── IOC
│ │ │ │ ├── IApplicationBuilder.cs
│ │ │ │ ├── IDemo.cs
│ │ │ │ ├── IIdentityInitService.cs
│ │ │ │ ├── IIdentityService.cs
│ │ │ │ ├── ILogService.cs
│ │ │ │ ├── IMetaSettingService.cs
│ │ │ │ ├── IOperationService.cs
│ │ │ │ ├── IProjectService.cs
│ │ │ │ ├── ISerializerService.cs
│ │ │ │ ├── IServiceCollection.cs
│ │ │ │ ├── ISetting.cs
│ │ │ │ ├── ISettingPathService.cs
│ │ │ │ ├── IStartInitService.cs
│ │ │ │ ├── ISystemSettingService.cs
│ │ │ │ ├── IThemeConfigService.cs
│ │ │ │ ├── IUpgradeInitService.cs
│ │ │ │ ├── IUpgradeService.cs
│ │ │ │ ├── InstanceBase.cs
│ │ │ │ └── ServiceRegistry.cs
│ │ │ ├── Icons.cs
│ │ │ ├── Image
│ │ │ │ └── ImageService.cs
│ │ │ ├── ObjectRoutedEventArgs.cs
│ │ │ ├── Observable
│ │ │ │ ├── IObservableSource.cs
│ │ │ │ ├── ObservableExtension.cs
│ │ │ │ └── ObservableSource.cs
│ │ │ ├── PropertyService
│ │ │ │ ├── ObjectProperty.cs
│ │ │ │ └── ObjectPropertyFactory.cs
│ │ │ ├── Regexs.cs
│ │ │ └── StyleSetting.cs
│ │ └── Themes
│ │ ├── Color
│ │ │ ├── Accent.xaml
│ │ │ ├── Dark.xaml
│ │ │ ├── Gray.xaml
│ │ │ ├── Light.xaml
│ │ │ ├── TranparentDark.xaml
│ │ │ └── TranparentLight.xaml
│ │ ├── DrawingGroup.xaml
│ │ ├── Generic.xaml
│ │ ├── Resource.xaml
│ │ ├── ResourceKey.cs
│ │ └── StoryBoard.xaml
│ ├── Common
│ │ └── HeBianGu.Common.Expression
│ │ ├── Base
│ │ │ ├── ClassFactory.cs
│ │ │ ├── Dynamic.cs
│ │ │ ├── DynamicClass.cs
│ │ │ ├── DynamicExpression.cs
│ │ │ ├── DynamicOrdering.cs
│ │ │ ├── DynamicProperty.cs
│ │ │ ├── DynamicQueryable.cs
│ │ │ ├── ExpressionParser.cs
│ │ │ ├── ParseException.cs
│ │ │ └── Signature.cs
│ │ ├── HeBianGu.Common.Expression.csproj
│ │ ├── HeBianGu.Common.Expression.sln
│ │ └── Service
│ │ ├── ExpressionService.cs
│ │ ├── IParameter.cs
│ │ └── Parameter.cs
│ ├── Control
│ │ ├── HeBianGu.Control.Adorner
│ │ │ ├── Adorner
│ │ │ │ ├── BorderAdorner.cs
│ │ │ │ ├── DragAdorner.cs
│ │ │ │ └── ScrollAdorner.cs
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── HeBianGu.Control.Adorner.csproj
│ │ │ ├── ListBoxItem.xaml
│ │ │ ├── Service
│ │ │ │ └── Bevhavior
│ │ │ │ ├── DrapAdornerBehavior.cs
│ │ │ │ ├── DropAdornerBehavior.cs
│ │ │ │ └── ElementAllowDrapBehavior.cs
│ │ │ └── Themes
│ │ │ └── Generic.xaml
│ │ ├── HeBianGu.Control.AnimatedTabControl
│ │ │ ├── AnimatedTabControl.xaml
│ │ │ ├── AnimatedTabControl.xaml.cs
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Extention.cs
│ │ │ ├── HeBianGu.Control.AnimatedTabControl.csproj
│ │ │ ├── Service.cs
│ │ │ └── Themes
│ │ │ └── Generic.xaml
│ │ ├── HeBianGu.Control.AnimationBox
│ │ │ ├── AnimationBox.xaml
│ │ │ ├── AnimationBox.xaml.cs
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Extention.cs
│ │ │ ├── HeBianGu.Control.AnimationBox.csproj
│ │ │ ├── Service.cs
│ │ │ └── Themes
│ │ │ └── Generic.xaml
│ │ ├── HeBianGu.Control.Chart2D
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Axis
│ │ │ │ ├── Axis.xaml
│ │ │ │ ├── Axis.xaml.cs
│ │ │ │ ├── Grid.xaml
│ │ │ │ ├── Grid.xaml.cs
│ │ │ │ ├── Polar.xaml
│ │ │ │ └── Polar.xaml.cs
│ │ │ ├── Chart.xaml
│ │ │ ├── Chart.xaml.cs
│ │ │ ├── Extention.cs
│ │ │ ├── GeoMap.xaml
│ │ │ ├── GeoMap.xaml.cs
│ │ │ ├── HeBianGu.Control.Chart2D.csproj
│ │ │ ├── Legend
│ │ │ │ ├── Legend.xaml
│ │ │ │ └── Legend.xaml.cs
│ │ │ ├── Marker
│ │ │ │ ├── CirclePointMarker.cs
│ │ │ │ ├── IMark.cs
│ │ │ │ ├── Marker.xaml
│ │ │ │ ├── Marker.xaml.cs
│ │ │ │ ├── T5PointMarker.cs
│ │ │ │ └── TrianglePointMarker.cs
│ │ │ ├── Option.cs
│ │ │ ├── Provider
│ │ │ │ ├── DouglasProvider.cs
│ │ │ │ ├── Layer.xaml
│ │ │ │ ├── Layer.xaml.cs
│ │ │ │ ├── LayerGroup.xaml
│ │ │ │ ├── LayerGroup.xaml.cs
│ │ │ │ ├── LayerListBox.xaml
│ │ │ │ ├── LayerListBox.xaml.cs
│ │ │ │ ├── ThumbToolBar.xaml
│ │ │ │ └── ThumbToolBar.xaml.cs
│ │ │ ├── Series
│ │ │ │ ├── Bar.xaml
│ │ │ │ ├── Bar.xaml.cs
│ │ │ │ ├── FlagTip.xaml
│ │ │ │ ├── FlagTip.xaml.cs
│ │ │ │ ├── Line.xaml
│ │ │ │ ├── Line.xaml.cs
│ │ │ │ ├── MarkLine.xaml
│ │ │ │ ├── MarkLine.xaml.cs
│ │ │ │ ├── MarkPosition.xaml
│ │ │ │ ├── MarkPosition.xaml.cs
│ │ │ │ ├── MarkTip.xaml
│ │ │ │ ├── MarkTip.xaml.cs
│ │ │ │ ├── Pie.xaml
│ │ │ │ ├── Pie.xaml.cs
│ │ │ │ ├── Scatter.xaml
│ │ │ │ ├── Scatter.xaml.cs
│ │ │ │ ├── Series.xaml
│ │ │ │ ├── Series.xaml.cs
│ │ │ │ ├── Title.xaml
│ │ │ │ ├── Title.xaml.cs
│ │ │ │ ├── VisualMap.xaml.cs
│ │ │ │ └── visualMap.xaml
│ │ │ ├── Service.cs
│ │ │ ├── Theme
│ │ │ │ └── Default.xaml
│ │ │ └── Themes
│ │ │ └── Generic.xaml
│ │ ├── HeBianGu.Control.Drawer
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Drawer.xaml
│ │ │ ├── Drawer.xaml.cs
│ │ │ ├── Extention.cs
│ │ │ ├── HeBianGu.Control.Drawer.csproj
│ │ │ ├── Service.cs
│ │ │ └── Themes
│ │ │ └── Generic.xaml
│ │ ├── HeBianGu.Control.Explorer
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Explorer.xaml
│ │ │ ├── Explorer.xaml.cs
│ │ │ ├── ExplorerTree.xaml
│ │ │ ├── ExplorerTree.xaml.cs
│ │ │ ├── Extention.cs
│ │ │ ├── HeBianGu.Control.Explorer.csproj
│ │ │ ├── Service.cs
│ │ │ └── Themes
│ │ │ ├── Generic.Default.xaml
│ │ │ ├── Generic.Single.xaml
│ │ │ └── Generic.xaml
│ │ ├── HeBianGu.Control.Filter
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── ControlFilterService.cs
│ │ │ ├── Extention.cs
│ │ │ ├── FilterBox.xaml
│ │ │ ├── FilterBox.xaml.cs
│ │ │ ├── FilterColumn.xaml
│ │ │ ├── FilterColumn.xaml.cs
│ │ │ ├── HeBianGu.Control.Filter.csproj
│ │ │ ├── Provider
│ │ │ │ ├── Base
│ │ │ │ │ ├── FilterFactory.cs
│ │ │ │ │ ├── FilterItemCollection.cs
│ │ │ │ │ ├── FilterOperate.cs
│ │ │ │ │ ├── MathValueFilter.cs
│ │ │ │ │ └── PropertyFilterBase.cs
│ │ │ │ ├── BooleanFilter.cs
│ │ │ │ ├── DateTimeFilter.cs
│ │ │ │ ├── DoubleFilter.cs
│ │ │ │ ├── IFilter.cs
│ │ │ │ ├── IntFilter.cs
│ │ │ │ └── StringFilter.cs
│ │ │ ├── SearchBox.xaml
│ │ │ ├── SearchBox.xaml.cs
│ │ │ ├── SelectionBox.xaml
│ │ │ ├── SelectionBox.xaml.cs
│ │ │ ├── SelectionFilter.xaml
│ │ │ ├── SelectionFilter.xaml.cs
│ │ │ ├── Service.cs
│ │ │ └── Themes
│ │ │ └── Generic.xaml
│ │ ├── HeBianGu.Control.GridSplitter
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Extention.cs
│ │ │ ├── GridSplitterContainer.xaml
│ │ │ ├── GridSplitterContainer.xaml.cs
│ │ │ ├── HeBianGu.Control.GridSplitter.csproj
│ │ │ ├── Service.cs
│ │ │ └── Themes
│ │ │ └── Generic.xaml
│ │ ├── HeBianGu.Control.Guide
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── BorderAdorner.cs
│ │ │ ├── Extention.cs
│ │ │ ├── GuideAdorner.cs
│ │ │ ├── GuideAdornerBehavior.cs
│ │ │ ├── GuideHost.xaml
│ │ │ ├── GuideHost.xaml.cs
│ │ │ ├── GuideService.cs
│ │ │ ├── GuideViewPresenter.cs
│ │ │ ├── HeBianGu.Control.Guide.csproj
│ │ │ ├── Service.cs
│ │ │ └── Themes
│ │ │ └── Generic.xaml
│ │ ├── HeBianGu.Control.Host
│ │ │ ├── AnimationHost.cs
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Extention.cs
│ │ │ ├── HeBianGu.Control.Host.csproj
│ │ │ ├── HostBase.cs
│ │ │ ├── HostContianerKeys.cs
│ │ │ ├── ItemsHost.cs
│ │ │ ├── MouseHost.xaml
│ │ │ ├── MouseHost.xaml.cs
│ │ │ ├── SelectorHost.xaml
│ │ │ ├── SelectorHost.xaml.cs
│ │ │ ├── Service.cs
│ │ │ └── Themes
│ │ │ └── Generic.xaml
│ │ ├── HeBianGu.Control.ImagePlayer
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Extention.cs
│ │ │ ├── HeBianGu.Control.ImagePlayer.csproj
│ │ │ ├── Provider
│ │ │ │ ├── Behavior
│ │ │ │ │ ├── ImageBaseMouseBubbleBehavior.cs
│ │ │ │ │ ├── ImageBaseMouseDragBehavior.cs
│ │ │ │ │ ├── ImageBaseMouseWheelBehavior.cs
│ │ │ │ │ └── MouseRect
│ │ │ │ │ ├── ImageBaseMouseDrawRectBehaviorBase.cs
│ │ │ │ │ ├── ImageBaseMouseEnlargeBehavior.cs
│ │ │ │ │ └── ImageBaseMouseSignBehavior.cs
│ │ │ │ ├── Mark
│ │ │ │ │ ├── IndicatorObject.cs
│ │ │ │ │ ├── LoactionArgs.cs
│ │ │ │ │ └── MaskCanvas.cs
│ │ │ │ ├── OperateType.cs
│ │ │ │ └── Rectangle
│ │ │ │ ├── IRectangleStroke.cs
│ │ │ │ ├── RectangleLayer.cs
│ │ │ │ └── RectangleShape.cs
│ │ │ ├── Service.cs
│ │ │ ├── Theme
│ │ │ │ ├── Default.xaml
│ │ │ │ └── Generic.xaml
│ │ │ ├── Themes
│ │ │ │ └── Generic.xaml
│ │ │ └── View
│ │ │ ├── ImageCore.xaml
│ │ │ ├── ImageCore.xaml.cs
│ │ │ ├── ImagePlayer.xaml
│ │ │ └── ImagePlayer.xaml.cs
│ │ ├── HeBianGu.Control.LeftMenu
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Extention.cs
│ │ │ ├── GroupExpander.xaml
│ │ │ ├── GroupExpander.xaml.cs
│ │ │ ├── HeBianGu.Control.LeftMenu.csproj
│ │ │ ├── LeftMenu.xaml
│ │ │ ├── LeftMenu.xaml.cs
│ │ │ ├── LinkGroupExpander.xaml
│ │ │ ├── LinkGroupExpander.xaml.cs
│ │ │ ├── PopupRefreshBehavior.cs
│ │ │ ├── Service.cs
│ │ │ └── Themes
│ │ │ └── Generic.xaml
│ │ ├── HeBianGu.Control.Message
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Dialog
│ │ │ │ ├── DialogClosingEventArgs.cs
│ │ │ │ ├── DialogClosingEventHandler.cs
│ │ │ │ ├── DialogHost.xaml
│ │ │ │ ├── DialogHost.xaml.cs
│ │ │ │ ├── DialogHostEx.cs
│ │ │ │ ├── DialogOpenedEventArgs.cs
│ │ │ │ ├── DialogOpenedEventHandler.cs
│ │ │ │ ├── DialogSession.cs
│ │ │ │ ├── DrawerHost.xaml
│ │ │ │ ├── DrawerHost.xaml.cs
│ │ │ │ ├── Message
│ │ │ │ │ ├── PercentProgressDialog.xaml
│ │ │ │ │ ├── PercentProgressDialog.xaml.cs
│ │ │ │ │ ├── ResultMessageDialog.xaml
│ │ │ │ │ ├── ResultMessageDialog.xaml.cs
│ │ │ │ │ ├── SampleMessageDialog.xaml
│ │ │ │ │ ├── SampleMessageDialog.xaml.cs
│ │ │ │ │ ├── StringProgressDialog.xaml
│ │ │ │ │ ├── StringProgressDialog.xaml.cs
│ │ │ │ │ ├── WaittingMessageDialog.xaml
│ │ │ │ │ └── WaittingMessageDialog.xaml.cs
│ │ │ │ ├── ObjectContentDialog.xaml
│ │ │ │ ├── ObjectContentDialog.xaml.cs
│ │ │ │ ├── PopupBox.xaml
│ │ │ │ ├── PopupEx.cs
│ │ │ │ └── Shadows.xaml
│ │ │ ├── Extention.cs
│ │ │ ├── HeBianGu.Control.Message.csproj
│ │ │ ├── PopupBox.cs
│ │ │ ├── Service
│ │ │ │ ├── MessageExtention.cs
│ │ │ │ ├── MessageService.cs
│ │ │ │ └── MessageSetting.cs
│ │ │ ├── Service.cs
│ │ │ ├── Snack
│ │ │ │ ├── ISnackbarMessageQueue.cs
│ │ │ │ ├── MessageQueueExtension.cs
│ │ │ │ ├── Snackbar.xaml
│ │ │ │ ├── Snackbar.xaml.cs
│ │ │ │ ├── SnackbarMessage.cs
│ │ │ │ ├── SnackbarMessageEventArgs.cs
│ │ │ │ ├── SnackbarMessageQueue.cs
│ │ │ │ ├── SnackbarMessageQueueItem.cs
│ │ │ │ └── SnackbarMessageTypeConverter.cs
│ │ │ └── Themes
│ │ │ └── Generic.xaml
│ │ ├── HeBianGu.Control.MessageContainer
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Extention.cs
│ │ │ ├── HeBianGu.Control.MessageContainer.csproj
│ │ │ ├── HeBianGu.Control.MessageContainer_5yha0s54_wpftmp.csproj
│ │ │ ├── MessageContainer.xaml
│ │ │ ├── MessageContainer.xaml.cs
│ │ │ ├── Service
│ │ │ │ ├── AutoCloseMessage.cs
│ │ │ │ ├── DailogMessage.cs
│ │ │ │ ├── DailogMessageBase.cs
│ │ │ │ ├── ErrorMessage.cs
│ │ │ │ ├── FatalMessage.cs
│ │ │ │ ├── InfoMessage.cs
│ │ │ │ ├── MessageBase.cs
│ │ │ │ ├── PercentProgressMessage.cs
│ │ │ │ ├── StringProgressMessage.cs
│ │ │ │ ├── SuccessMessage.cs
│ │ │ │ ├── WaittingMessage.cs
│ │ │ │ └── WarnMessage.cs
│ │ │ ├── Service.cs
│ │ │ └── Themes
│ │ │ ├── Generic.Default.xaml
│ │ │ └── Generic.xaml
│ │ ├── HeBianGu.Control.MessageListBox
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Extention.cs
│ │ │ ├── HeBianGu.Control.MessageListBox.csproj
│ │ │ ├── Message.cs
│ │ │ ├── MessageListBox.xaml
│ │ │ ├── MessageListBox.xaml.cs
│ │ │ ├── MessageListBoxConfig.cs
│ │ │ ├── MessageListBoxExtention.cs
│ │ │ ├── Service.cs
│ │ │ └── Themes
│ │ │ └── Generic.xaml
│ │ ├── HeBianGu.Control.MultiComboBox
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Extention.cs
│ │ │ ├── HeBianGu.Control.MultiComboBox.csproj
│ │ │ ├── MultiComboBox.xaml
│ │ │ ├── MultiComboBox.xaml.cs
│ │ │ ├── Service.cs
│ │ │ └── Themes
│ │ │ └── Generic.xaml
│ │ ├── HeBianGu.Control.PagedDataGrid
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── AutoColumnPagedDataGrid.xaml
│ │ │ ├── AutoColumnPagedDataGrid.xaml.cs
│ │ │ ├── DataGridColumn
│ │ │ │ ├── CheckBoxDataGridColumn.cs
│ │ │ │ ├── ComboBoxDataGridCheckBoxColumn.cs
│ │ │ │ └── TextBoxDataGridColumn.cs
│ │ │ ├── Extention.cs
│ │ │ ├── HeBianGu.Control.PagedDataGrid.csproj
│ │ │ ├── PagedDataGrid.xaml
│ │ │ ├── PagedDataGrid.xaml.cs
│ │ │ ├── Pagination.xaml
│ │ │ ├── Pagination.xaml.cs
│ │ │ ├── Service.cs
│ │ │ ├── Setting
│ │ │ │ ├── PagedDataGridExtention.cs
│ │ │ │ └── PagedDataGridSetting.cs
│ │ │ └── Themes
│ │ │ └── Generic.xaml
│ │ ├── HeBianGu.Control.Panel
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── EffectBox.xaml
│ │ │ ├── EffectBox.xaml.cs
│ │ │ ├── Extention.cs
│ │ │ ├── HeBianGu.Control.Panel.csproj
│ │ │ ├── HeBianGu.Control.Panel_2utmsto1_wpftmp.csproj
│ │ │ ├── HeBianGu.Control.Panel_nk1q1l0i_wpftmp.csproj
│ │ │ ├── HeBianGu.Control.Panel_sscqkw1r_wpftmp.csproj
│ │ │ ├── HexGrid.xaml
│ │ │ ├── HexGrid.xaml.cs
│ │ │ ├── Panel
│ │ │ │ ├── AnimationCanvas.cs
│ │ │ │ ├── ArcPanel.cs
│ │ │ │ ├── CirclePanel.cs
│ │ │ │ ├── ContainPanel.cs
│ │ │ │ ├── CoverPanel.cs
│ │ │ │ ├── CrossPanel.cs
│ │ │ │ ├── DockPanel.cs
│ │ │ │ ├── DragPanel.cs
│ │ │ │ ├── FlashPanel.cs
│ │ │ │ ├── GridAreaAttach.cs
│ │ │ │ ├── PagePanel.cs
│ │ │ │ ├── PanelBase.cs
│ │ │ │ └── RandomPanel.cs
│ │ │ ├── Service.cs
│ │ │ └── Themes
│ │ │ └── Generic.xaml
│ │ ├── HeBianGu.Control.PasswordBox
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Extention.cs
│ │ │ ├── HeBianGu.Control.PasswordBox.csproj
│ │ │ ├── PasswordBox.xaml
│ │ │ ├── PasswordBox.xaml.cs
│ │ │ ├── Service.cs
│ │ │ └── Themes
│ │ │ └── Generic.xaml
│ │ ├── HeBianGu.Control.Ping
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Extention.cs
│ │ │ ├── HeBianGu.Control.Ping.csproj
│ │ │ ├── HeBianGu.Control.Ping_fqywwqz1_wpftmp.csproj
│ │ │ ├── Ping.xaml
│ │ │ ├── Ping.xaml.cs
│ │ │ ├── Service.cs
│ │ │ └── Themes
│ │ │ └── Generic.xaml
│ │ ├── HeBianGu.Control.PropertyGrid
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Attribute
│ │ │ │ └── StyleAttribute.cs
│ │ │ ├── Converter.cs
│ │ │ ├── Extention.cs
│ │ │ ├── HeBianGu.Control.PropertyGrid.csproj
│ │ │ ├── ListBox.xaml
│ │ │ ├── PropertyControl.xaml
│ │ │ ├── PropertyControl.xaml.cs
│ │ │ ├── PropertyGrid.xaml
│ │ │ ├── PropertyGrid.xaml.cs
│ │ │ ├── PropertyTabControl.xaml
│ │ │ ├── PropertyTabControl.xaml.cs
│ │ │ ├── PropertyView.xaml
│ │ │ ├── PropertyView.xaml.cs
│ │ │ ├── Provider
│ │ │ │ ├── Base
│ │ │ │ │ ├── IEnumerablePropertyItem.cs
│ │ │ │ │ ├── IPropertyItem.cs
│ │ │ │ │ ├── ItemsSourcePropertyItem.cs
│ │ │ │ │ ├── ObjectProperty.cs
│ │ │ │ │ ├── PrimitivesPropertyItem.cs
│ │ │ │ │ ├── SelectSourcePropertyItem.cs
│ │ │ │ │ └── StringHost.cs
│ │ │ │ ├── BoolPropertyItem.cs
│ │ │ │ ├── CommandPropertyItem.cs
│ │ │ │ ├── DateTimePropertyItem.cs
│ │ │ │ ├── DoublePropertyItem.cs
│ │ │ │ ├── EnumPropertyItem.cs
│ │ │ │ ├── IEnumerablePropertyItem.cs
│ │ │ │ ├── IntPropertyItem.cs
│ │ │ │ ├── PrimitiveArrayPropertyItem.cs
│ │ │ │ ├── PrimitiveListPropertyItem.cs
│ │ │ │ └── TextPropertyItem.cs
│ │ │ ├── Service
│ │ │ │ ├── Behavior
│ │ │ │ │ └── ItemsSourceButtonBehavior.cs
│ │ │ │ ├── PropertyControlTemplateSelector.cs
│ │ │ │ ├── PropertyExtention.cs
│ │ │ │ ├── PropertyGridDataTemplateSelectorBase.cs
│ │ │ │ ├── PropertyGridTemplateKeys.cs
│ │ │ │ ├── PropertyGridTemplateSelector.cs
│ │ │ │ ├── PropertyService.cs
│ │ │ │ ├── PropertyTabControlTemplateSelector.cs
│ │ │ │ └── PropertyViewTemplateSelector.cs
│ │ │ ├── Service.cs
│ │ │ ├── StylesPropertyItem.cs
│ │ │ ├── TestPropertyModel.cs
│ │ │ ├── Themes
│ │ │ │ └── Generic.xaml
│ │ │ └── TransitionPropertyItem.cs
│ │ ├── HeBianGu.Control.Screen
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Extention.cs
│ │ │ ├── HeBianGu.Control.Screen.csproj
│ │ │ ├── Screen.xaml
│ │ │ ├── Screen.xaml.cs
│ │ │ ├── ScreenBackground.xaml
│ │ │ ├── ScreenBackground.xaml.cs
│ │ │ ├── ScreenBorder.xaml
│ │ │ ├── ScreenBorder.xaml.cs
│ │ │ ├── ScreenBrushKeys.xaml
│ │ │ ├── ScreenBrushKeys.xaml.cs
│ │ │ ├── ScreenCard.xaml
│ │ │ ├── ScreenCard.xaml.cs
│ │ │ ├── ScreenCover.xaml
│ │ │ ├── ScreenCover.xaml.cs
│ │ │ ├── ScreenEffect.xaml
│ │ │ ├── ScreenEffect.xaml.cs
│ │ │ ├── ScreenGroupBox.xaml
│ │ │ ├── ScreenGroupBox.xaml.cs
│ │ │ ├── ScreenHeader.xaml
│ │ │ ├── ScreenHeader.xaml.cs
│ │ │ ├── Service.cs
│ │ │ └── Themes
│ │ │ ├── Generic.xaml
│ │ │ ├── ScreenStyle1.xaml
│ │ │ └── ScreenStyle2.xaml
│ │ ├── HeBianGu.Control.ScrollInto
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Extention.cs
│ │ │ ├── HeBianGu.Control.ScrollInto.csproj
│ │ │ ├── ScrollIntoView.xaml
│ │ │ ├── ScrollIntoView.xaml.cs
│ │ │ ├── Service.cs
│ │ │ └── Themes
│ │ │ └── Generic.xaml
│ │ ├── HeBianGu.Control.ScrollVewerLocator
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Extention.cs
│ │ │ ├── HeBianGu.Control.ScrollVewerLocator.csproj
│ │ │ ├── HeBianGu.Control.ScrollVewerLocator_cep5det2_wpftmp.csproj
│ │ │ ├── MaskGrid.cs
│ │ │ ├── MaskMouseDragElementBehavior.cs
│ │ │ ├── ScrollBarLocator.xaml
│ │ │ ├── ScrollBarLocator.xaml.cs
│ │ │ ├── ScrollLocatorBase.xaml
│ │ │ ├── ScrollLocatorBase.xaml.cs
│ │ │ ├── ScrollViewerLocator.xaml
│ │ │ ├── ScrollViewerLocator.xaml.cs
│ │ │ ├── ScrollViewerTransfor.xaml
│ │ │ ├── ScrollViewerTransfor.xaml.cs
│ │ │ ├── Service.cs
│ │ │ └── Themes
│ │ │ └── Generic.xaml
│ │ ├── HeBianGu.Control.SearchComboBox
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Extention.cs
│ │ │ ├── HeBianGu.Control.SearchComboBox.csproj
│ │ │ ├── SearchComboBox.xaml
│ │ │ ├── SearchComboBox.xaml.cs
│ │ │ ├── Service.cs
│ │ │ └── Themes
│ │ │ └── Generic.xaml
│ │ ├── HeBianGu.Control.Shape
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Extention.cs
│ │ │ ├── HeBianGu.Control.Shape.csproj
│ │ │ ├── Service.cs
│ │ │ ├── Shape
│ │ │ │ └── Sector.cs
│ │ │ └── Themes
│ │ │ └── Generic.xaml
│ │ ├── HeBianGu.Control.Shuttle
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Extention.cs
│ │ │ ├── HeBianGu.Control.Shuttle.csproj
│ │ │ ├── Service.cs
│ │ │ ├── Shuttle.xaml
│ │ │ ├── Shuttle.xaml.cs
│ │ │ └── Themes
│ │ │ └── Generic.xaml
│ │ ├── HeBianGu.Control.Step
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Extention.cs
│ │ │ ├── HeBianGu.Control.Step.csproj
│ │ │ ├── Service.cs
│ │ │ ├── Step.xaml
│ │ │ ├── Step.xaml.cs
│ │ │ └── Themes
│ │ │ └── Generic.xaml
│ │ ├── HeBianGu.Control.StoryBoard
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Extention.cs
│ │ │ ├── HeBianGu.Control.StoryBoard.csproj
│ │ │ ├── ItemsBoardToolBar.xaml
│ │ │ ├── ItemsBoardToolBar.xaml.cs
│ │ │ ├── Service.cs
│ │ │ ├── SingleTickBar.xaml
│ │ │ ├── SingleTickBar.xaml.cs
│ │ │ ├── StoryBoardPlayer.xaml
│ │ │ ├── StoryBoardPlayer.xaml.cs
│ │ │ ├── StoryBoardToolBar.xaml
│ │ │ ├── StoryBoardToolBar.xaml.cs
│ │ │ └── Themes
│ │ │ └── Generic.xaml
│ │ ├── HeBianGu.Control.TextEditor
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Extention.cs
│ │ │ ├── HeBianGu.Control.TextEditor.csproj
│ │ │ ├── Service.cs
│ │ │ ├── TextEditor.xaml
│ │ │ ├── TextEditor.xaml.cs
│ │ │ ├── TextEditorBox.xaml
│ │ │ ├── TextEditorBox.xaml.cs
│ │ │ └── Themes
│ │ │ └── Generic.xaml
│ │ ├── HeBianGu.Control.ThemeSet
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Base
│ │ │ │ └── ThemeViewModel.cs
│ │ │ ├── Extention.cs
│ │ │ ├── HeBianGu.Control.ThemeSet.csproj
│ │ │ ├── Service
│ │ │ │ ├── ThemeConfig.cs
│ │ │ │ ├── ThemeSaveService.cs
│ │ │ │ ├── ThemeSetExtention.cs
│ │ │ │ ├── ThemeSetting.cs
│ │ │ │ ├── ThemeViewPresenter.cs
│ │ │ │ └── XmlThemeSerializeService.cs
│ │ │ ├── Service.cs
│ │ │ ├── ThemeSet.xaml
│ │ │ ├── ThemeSet.xaml.cs
│ │ │ └── Themes
│ │ │ └── Generic.xaml
│ │ ├── HeBianGu.Control.ToggleExpander
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Extention.cs
│ │ │ ├── HeBianGu.Control.ToggleExpander.csproj
│ │ │ ├── Service.cs
│ │ │ ├── Themes
│ │ │ │ └── Generic.xaml
│ │ │ ├── ToggleExpander.xaml
│ │ │ └── ToggleExpander.xaml.cs
│ │ ├── HeBianGu.Control.TopContainer
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Extention.cs
│ │ │ ├── GitTopContainer.xaml
│ │ │ ├── GitTopContainer.xaml.cs
│ │ │ ├── HeBianGu.Control.TopContainer.csproj
│ │ │ ├── Service.cs
│ │ │ └── Themes
│ │ │ └── Generic.xaml
│ │ ├── HeBianGu.Control.TransformAdorner
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Extention.cs
│ │ │ ├── HeBianGu.Control.TransformAdorner.csproj
│ │ │ ├── Service.cs
│ │ │ ├── Themes
│ │ │ │ └── Generic.xaml
│ │ │ ├── TransformAdorner.cs
│ │ │ └── TransformAttach.cs
│ │ ├── HeBianGu.Control.TreeListView
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Extention.cs
│ │ │ ├── HeBianGu.Control.TreeListView.csproj
│ │ │ ├── Service.cs
│ │ │ ├── Themes
│ │ │ │ └── Generic.xaml
│ │ │ ├── TreeListView.xaml
│ │ │ └── TreeListView.xaml.cs
│ │ └── HeBianGu.Control.Vlc
│ │ ├── AssemblyInfo.cs
│ │ ├── Extention.cs
│ │ ├── FullWindow.xaml
│ │ ├── FullWindow.xaml.cs
│ │ ├── HeBianGu.Control.Vlc.csproj
│ │ ├── Service.cs
│ │ ├── Themes
│ │ │ └── Generic.xaml
│ │ ├── VlcPlayer.xaml
│ │ └── VlcPlayer.xaml.cs
│ ├── Demo
│ │ ├── HeBianGu.Demo.Demo1
│ │ │ ├── App.config
│ │ │ ├── App.xaml
│ │ │ ├── App.xaml.cs
│ │ │ ├── HeBianGu.Demo.Demo1.csproj
│ │ │ ├── MainWindow.xaml
│ │ │ ├── MainWindow.xaml.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── HeBianGu.Demo.Demo10
│ │ │ ├── App.config
│ │ │ ├── App.xaml
│ │ │ ├── App.xaml.cs
│ │ │ ├── HeBianGu.Demo.Demo10.csproj
│ │ │ ├── MainWindow.xaml
│ │ │ ├── MainWindow.xaml.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── logo.ico
│ │ ├── HeBianGu.Demo.Demo2
│ │ │ ├── App.config
│ │ │ ├── App.xaml
│ │ │ ├── App.xaml.cs
│ │ │ ├── HeBianGu.Demo.Demo2.csproj
│ │ │ ├── MainWindow.xaml
│ │ │ ├── MainWindow.xaml.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── HeBianGu.Demo.Demo3
│ │ │ ├── App.config
│ │ │ ├── App.xaml
│ │ │ ├── App.xaml.cs
│ │ │ ├── HeBianGu.Demo.Demo3.csproj
│ │ │ ├── MainWindow.xaml
│ │ │ ├── MainWindow.xaml.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── HeBianGu.Demo.Demo4
│ │ │ ├── App.config
│ │ │ ├── App.xaml
│ │ │ ├── App.xaml.cs
│ │ │ ├── HeBianGu.Demo.Demo4.csproj
│ │ │ ├── MainWindow.xaml
│ │ │ ├── MainWindow.xaml.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── logo.ico
│ │ ├── HeBianGu.Demo.Demo5
│ │ │ ├── App.config
│ │ │ ├── App.xaml
│ │ │ ├── App.xaml.cs
│ │ │ ├── HeBianGu.Demo.Demo5.csproj
│ │ │ ├── MainWindow.xaml
│ │ │ ├── MainWindow.xaml.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── logo.ico
│ │ ├── HeBianGu.Demo.Demo6
│ │ │ ├── App.config
│ │ │ ├── App.xaml
│ │ │ ├── App.xaml.cs
│ │ │ ├── HeBianGu.Demo.Demo6.csproj
│ │ │ ├── MainWindow.xaml
│ │ │ ├── MainWindow.xaml.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── logo.ico
│ │ ├── HeBianGu.Demo.Demo7
│ │ │ ├── App.config
│ │ │ ├── App.xaml
│ │ │ ├── App.xaml.cs
│ │ │ ├── HeBianGu.Demo.Demo7.csproj
│ │ │ ├── MainWindow.xaml
│ │ │ ├── MainWindow.xaml.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── logo.ico
│ │ ├── HeBianGu.Demo.Demo8
│ │ │ ├── App.config
│ │ │ ├── App.xaml
│ │ │ ├── App.xaml.cs
│ │ │ ├── HeBianGu.Demo.Demo8.csproj
│ │ │ ├── MainWindow.xaml
│ │ │ ├── MainWindow.xaml.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── logo.ico
│ │ └── HeBianGu.Demo.Demo9
│ │ ├── App.config
│ │ ├── App.xaml
│ │ ├── App.xaml.cs
│ │ ├── HeBianGu.Demo.Demo9.csproj
│ │ ├── MainWindow.xaml
│ │ ├── MainWindow.xaml.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ └── logo.ico
│ ├── General
│ │ ├── HeBianGu.General.WpfControlLib
│ │ │ ├── HeBianGu.General.WpfControlLib.csproj
│ │ │ └── Resources
│ │ │ ├── Cover.png
│ │ │ ├── TiBook.ico
│ │ │ ├── iBook.ico
│ │ │ ├── logo.ico
│ │ │ ├── logo.png
│ │ │ ├── sun.png
│ │ │ └── top_cover.png
│ │ └── HeBianGu.General.WpfControlLib.Share
│ │ ├── AssemblyInfo.cs
│ │ ├── Custom
│ │ │ ├── Control
│ │ │ │ ├── AnimationPath.cs
│ │ │ │ ├── BulletCheckBox.xaml
│ │ │ │ ├── BulletCheckBox.xaml.cs
│ │ │ │ ├── Card.xaml
│ │ │ │ ├── Card.xaml.cs
│ │ │ │ ├── CarouselControl.xaml
│ │ │ │ ├── CarouselControl.xaml.cs
│ │ │ │ ├── ComboboxTextBox.xaml
│ │ │ │ ├── ComboboxTextBox.xaml.cs
│ │ │ │ ├── DateDisplay.xaml
│ │ │ │ ├── DateDisplay.xaml.cs
│ │ │ │ ├── Dialog.xaml
│ │ │ │ ├── Dialog.xaml.cs
│ │ │ │ ├── EvaluateControl.xaml
│ │ │ │ ├── EvaluateControl.xaml.cs
│ │ │ │ ├── FProgressBar.xaml
│ │ │ │ ├── FProgressBar.xaml.cs
│ │ │ │ ├── FScrollView.xaml
│ │ │ │ ├── FScrollView.xaml.cs
│ │ │ │ ├── HighlightTextBlock.xaml
│ │ │ │ ├── HighlightTextBlock.xaml.cs
│ │ │ │ ├── Icon.xaml
│ │ │ │ ├── Icon.xaml.cs
│ │ │ │ ├── ImageControl.xaml
│ │ │ │ ├── ImageControl.xaml.cs
│ │ │ │ ├── InlineModalDialog.xaml
│ │ │ │ ├── InlineModalDialog.xaml.cs
│ │ │ │ ├── MetroProgressBar.xaml
│ │ │ │ ├── MetroProgressBar.xaml.cs
│ │ │ │ ├── ModernFrame.xaml
│ │ │ │ ├── ModernFrame.xaml.cs
│ │ │ │ ├── ModernProgressRing.xaml
│ │ │ │ ├── ModernProgressRing.xaml.cs
│ │ │ │ ├── NotifyIcon.xaml
│ │ │ │ ├── NotifyIcon.xaml.cs
│ │ │ │ ├── NumericControl.xaml
│ │ │ │ ├── NumericControl.xaml.cs
│ │ │ │ ├── ProcessHyperlink.xaml
│ │ │ │ ├── ProcessHyperlink.xaml.cs
│ │ │ │ ├── ResourceKeyBox.xaml
│ │ │ │ ├── ResourceKeyBox.xaml.cs
│ │ │ │ ├── RingBox.xaml
│ │ │ │ ├── RingBox.xaml.cs
│ │ │ │ ├── Row.xaml
│ │ │ │ ├── Row.xaml.cs
│ │ │ │ ├── ScrollToEndListBox.xaml
│ │ │ │ ├── ScrollToEndListBox.xaml.cs
│ │ │ │ ├── SearchComboBox.xaml
│ │ │ │ ├── SearchComboBox.xaml.cs
│ │ │ │ ├── Share
│ │ │ │ │ ├── Extensions.cs
│ │ │ │ │ ├── IZIndexController.cs
│ │ │ │ │ ├── IndexedItemOffsetMultiplierExtension.cs
│ │ │ │ │ ├── NullToVisibilityConverter.cs
│ │ │ │ │ ├── ShadowAssist.cs
│ │ │ │ │ ├── ShadowConverter.cs
│ │ │ │ │ ├── ShadowEdgeConverter.cs
│ │ │ │ │ ├── ShadowInfo.cs
│ │ │ │ │ ├── SizeToRectConverter.cs
│ │ │ │ │ └── ValidationAssist.cs
│ │ │ │ ├── SwitchToggleButton.xaml
│ │ │ │ ├── SwitchToggleButton.xaml.cs
│ │ │ │ ├── TimeButton.xaml
│ │ │ │ ├── TimeButton.xaml.cs
│ │ │ │ ├── Transitioner
│ │ │ │ │ ├── ITransitionEffect
│ │ │ │ │ │ ├── ITransitionEffect.cs
│ │ │ │ │ │ ├── ITransitionEffectSubject.cs
│ │ │ │ │ │ ├── TransitionEffect.cs
│ │ │ │ │ │ ├── TransitionEffectBase.cs
│ │ │ │ │ │ ├── TransitionEffectExtension.cs
│ │ │ │ │ │ ├── TransitionEffectKind.cs
│ │ │ │ │ │ └── TransitionEffectTypeConverter.cs
│ │ │ │ │ ├── ITransitionWipe
│ │ │ │ │ │ ├── CircleWipe.cs
│ │ │ │ │ │ ├── FadeWipe.cs
│ │ │ │ │ │ ├── ITransitionWipe.cs
│ │ │ │ │ │ ├── SlideDirection.cs
│ │ │ │ │ │ ├── SlideOutScale.cs
│ │ │ │ │ │ ├── SlideOutWipe.cs
│ │ │ │ │ │ ├── SlideWipe.cs
│ │ │ │ │ │ ├── TransitionerSlide.cs
│ │ │ │ │ │ └── TransitionerSlideState.cs
│ │ │ │ │ ├── PointOriginType.cs
│ │ │ │ │ ├── SwtichTransitioner.xaml
│ │ │ │ │ ├── SwtichTransitioner.xaml.cs
│ │ │ │ │ ├── TransitionAssist.cs
│ │ │ │ │ ├── Transitioner.xaml
│ │ │ │ │ ├── Transitioner.xaml.cs
│ │ │ │ │ ├── TransitioningContent.cs
│ │ │ │ │ └── TransitioningContentBase.cs
│ │ │ │ ├── TupleGroup.xaml
│ │ │ │ ├── TupleGroup.xaml.cs
│ │ │ │ ├── TypeControl.xaml
│ │ │ │ ├── TypeControl.xaml.cs
│ │ │ │ ├── WaitingBox.xaml
│ │ │ │ ├── WaitingBox.xaml.cs
│ │ │ │ ├── WaterFallFlowControl.xaml
│ │ │ │ ├── WaterFallFlowControl.xaml.cs
│ │ │ │ ├── WaveProgressBar.xaml
│ │ │ │ └── WaveProgressBar.xaml.cs
│ │ │ ├── System
│ │ │ │ ├── Border.xaml
│ │ │ │ ├── Button.Default.xaml
│ │ │ │ ├── Button.xaml
│ │ │ │ ├── Calendar.xaml
│ │ │ │ ├── CenterScroll.xaml
│ │ │ │ ├── CheckBox.xaml
│ │ │ │ ├── ComboBox.xaml
│ │ │ │ ├── DataGrid.xaml
│ │ │ │ ├── DatePicker.xaml
│ │ │ │ ├── Expander.xaml
│ │ │ │ ├── GridTheme.xaml
│ │ │ │ ├── GroupBox.xaml
│ │ │ │ ├── GroupBoxTheme.xaml
│ │ │ │ ├── GroupStyle.xaml
│ │ │ │ ├── Image.xaml
│ │ │ │ ├── Label.xaml
│ │ │ │ ├── ListBox.xaml
│ │ │ │ ├── ListBoxItem.xaml
│ │ │ │ ├── ListView.xaml
│ │ │ │ ├── Menu.xaml
│ │ │ │ ├── PasswordBox.xaml
│ │ │ │ ├── ProgressBar.Default.xaml
│ │ │ │ ├── ProgressBar.Handy.xaml
│ │ │ │ ├── RadioButton.xaml
│ │ │ │ ├── ScrollViewer.xaml
│ │ │ │ ├── Separator.xaml
│ │ │ │ ├── Slider.xaml
│ │ │ │ ├── TabControl.xaml
│ │ │ │ ├── TextBlock.xaml
│ │ │ │ ├── TextBox.xaml
│ │ │ │ ├── ToggleButton.xaml
│ │ │ │ ├── ToolTip.xaml
│ │ │ │ ├── TreeView.Handy.xaml
│ │ │ │ ├── TreeView.Material.xaml
│ │ │ │ └── UserControlTheme.xaml
│ │ │ ├── User
│ │ │ │ ├── BufferPlayControl.xaml
│ │ │ │ ├── BufferPlayControl.xaml.cs
│ │ │ │ ├── DataPager.xaml
│ │ │ │ ├── DataPager.xaml.cs
│ │ │ │ ├── MetroColorPicker.xaml
│ │ │ │ ├── MetroColorPicker.xaml.cs
│ │ │ │ ├── ProgressBarControl.xaml
│ │ │ │ ├── ProgressBarControl.xaml.cs
│ │ │ │ ├── ScrollView3DControl.xaml
│ │ │ │ ├── ScrollView3DControl.xaml.cs
│ │ │ │ ├── SettingDialog.xaml
│ │ │ │ ├── SettingDialog.xaml.cs
│ │ │ │ ├── SpaceSpliterUserControl.xaml
│ │ │ │ └── SpaceSpliterUserControl.xaml.cs
│ │ │ └── Window
│ │ │ ├── DialogWindowBase.xaml
│ │ │ ├── DialogWindowBase.xaml.cs
│ │ │ ├── IMainWindow.cs
│ │ │ ├── MainWindowBase.xaml
│ │ │ ├── MainWindowBase.xaml.cs
│ │ │ ├── WindowBase.xaml
│ │ │ ├── WindowBase.xaml.cs
│ │ │ └── WindowBaseExtention.cs
│ │ ├── Extention.cs
│ │ ├── HeBianGu.General.WpfControlLib.Share.projitems
│ │ ├── HeBianGu.General.WpfControlLib.Share.shproj
│ │ ├── Provider
│ │ │ ├── CalendarDateCoalesceConverter.cs
│ │ │ ├── Command
│ │ │ │ ├── ActionVisibleCommand.cs
│ │ │ │ ├── CommandService.cs
│ │ │ │ └── MessageLayerCloseCommand.cs
│ │ │ ├── CustomPopupPlacementCallbackHelper.cs
│ │ │ ├── Effect
│ │ │ │ ├── BlendEffect.cs
│ │ │ │ ├── PointLightEffect.cs
│ │ │ │ └── UriHelper.cs
│ │ │ ├── GridAttachProperty.cs
│ │ │ ├── ListItemMoveBehavior.cs
│ │ │ ├── Material
│ │ │ │ ├── PackIcon.cs
│ │ │ │ ├── PackIconBase.cs
│ │ │ │ ├── PackIconDataFactory.cs
│ │ │ │ ├── PackIconExtension.cs
│ │ │ │ ├── PackIconKind.cs
│ │ │ │ ├── Ripple.cs
│ │ │ │ ├── RippleAssist.cs
│ │ │ │ ├── ScaleHost.cs
│ │ │ │ ├── TreeHelper.cs
│ │ │ │ └── TreeViewAssist.cs
│ │ │ ├── RelativeAnimatingContentControl.cs
│ │ │ └── UIHelpers.cs
│ │ ├── ResourceKeys.cs
│ │ ├── Service
│ │ │ ├── ApplicationBase.cs
│ │ │ ├── Behavior
│ │ │ │ ├── LoadedAdornerBehavior.cs
│ │ │ │ └── ZoomWithWheelAndMoveBehavior.cs
│ │ │ ├── IDragAdorner.cs
│ │ │ ├── IMessageWindowService.cs
│ │ │ ├── IWindowAnimationService.cs
│ │ │ ├── LoginViewModel.cs
│ │ │ ├── Message
│ │ │ │ ├── IMessageService.cs
│ │ │ │ └── Message.cs
│ │ │ ├── SelectedSourceViewModel.cs
│ │ │ └── SourceViewModel.cs
│ │ ├── Setting.cs
│ │ └── Themes
│ │ ├── Generic.Default.xaml
│ │ ├── Generic.Dynamic.xaml
│ │ ├── Generic.xaml
│ │ ├── Resource.xaml
│ │ ├── Share.xaml
│ │ └── System.xaml
│ ├── Service
│ │ ├── HeBianGu.Service.Animation
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── HeBianGu.Service.Animation.csproj
│ │ │ ├── Service
│ │ │ │ ├── Action
│ │ │ │ │ ├── InvokeFountainAnimationAction.cs
│ │ │ │ │ ├── InvokeRandomSplitAnimationAction.cs
│ │ │ │ │ ├── InvokeTimeSplitAnimationAction.cs
│ │ │ │ │ ├── RandomDoubleAnimation.cs
│ │ │ │ │ └── TimelineCollection.cs
│ │ │ │ ├── Behavior
│ │ │ │ │ ├── FountainAnimationBehavior.cs
│ │ │ │ │ └── LoadAnimationBehavior.cs
│ │ │ │ ├── Command
│ │ │ │ │ └── AnimationCommandService.cs
│ │ │ │ ├── StoryBoard
│ │ │ │ │ ├── DoubleStoryboardEngine.cs
│ │ │ │ │ ├── EasingFunctionFactroy.cs
│ │ │ │ │ ├── ElementStoryBoardExtention.cs
│ │ │ │ │ ├── StoryBoardService.cs
│ │ │ │ │ └── StoryboardEngineBase.cs
│ │ │ │ ├── StoryService.cs
│ │ │ │ └── TransitionService.cs
│ │ │ ├── Story
│ │ │ │ ├── AngleStory.cs
│ │ │ │ ├── Base
│ │ │ │ │ ├── IStory.cs
│ │ │ │ │ ├── StoryBase.cs
│ │ │ │ │ └── StoryCollection.cs
│ │ │ │ ├── OpacityStory.cs
│ │ │ │ └── TranslateStory.cs
│ │ │ ├── Themes
│ │ │ │ └── Generic.xaml
│ │ │ ├── Transition
│ │ │ │ ├── AngleTransition.cs
│ │ │ │ ├── Base
│ │ │ │ │ ├── ITransition.cs
│ │ │ │ │ └── TransitionBase.cs
│ │ │ │ ├── HorizontalTransition.cs
│ │ │ │ ├── ImageOpacityMaskTransition.cs
│ │ │ │ ├── LinearOpacityMaskTransition.cs
│ │ │ │ ├── NoneTransition.cs
│ │ │ │ ├── OpacityTransition.cs
│ │ │ │ ├── PathTransition.cs
│ │ │ │ ├── RadialOpacityMaskTransition.cs
│ │ │ │ ├── ScaleGeomotryTransition.cs
│ │ │ │ ├── ScaleTransition.cs
│ │ │ │ ├── SkewTransition.cs
│ │ │ │ ├── TransitionCollection.cs
│ │ │ │ ├── TranslateTransition.cs
│ │ │ │ └── VerticalTransition.cs
│ │ │ ├── TransitionsHost.cs
│ │ │ ├── WindowAnimationExtention.cs
│ │ │ └── WindowAnimationService.cs
│ │ ├── HeBianGu.Service.AppConfig
│ │ │ ├── ApplicationBuilderExtention.cs
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── HeBianGu.Service.AppConfig.csproj
│ │ │ ├── SettingPathService.cs
│ │ │ └── SystemPathSetting.cs
│ │ ├── HeBianGu.Service.Attach
│ │ │ ├── AssemblyInfo.cs
│ │ │ └── HeBianGu.Service.Attach.csproj
│ │ ├── HeBianGu.Service.Command
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── BuzyCommand.cs
│ │ │ ├── HeBianGu.Service.Command.csproj
│ │ │ ├── MoveCommands.cs
│ │ │ ├── NotifyCommand.cs
│ │ │ └── PercentCommand.cs
│ │ ├── HeBianGu.Service.Converter
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Base
│ │ │ │ ├── Convert.cs
│ │ │ │ └── ConvertBase.cs
│ │ │ ├── Converter
│ │ │ │ ├── DateTimeToStringConverter.cs
│ │ │ │ ├── ExpressionOfParameterConverter.cs
│ │ │ │ └── File
│ │ │ │ ├── FilePathToIconConverter.cs
│ │ │ │ └── FilePathToImageSourceConverter.cs
│ │ │ ├── ConverterService.cs
│ │ │ └── HeBianGu.Service.Converter.csproj
│ │ ├── HeBianGu.Service.Image
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Background.xaml
│ │ │ ├── Border.xaml
│ │ │ ├── Cover.xaml
│ │ │ ├── Halo.xaml
│ │ │ ├── HeBianGu.Service.Image.csproj
│ │ │ ├── Header.xaml
│ │ │ ├── Keys
│ │ │ │ ├── BackgroundImageBrushKeys.cs
│ │ │ │ ├── BorderImageBrushKeys.cs
│ │ │ │ ├── CoverImageBrushKeys.cs
│ │ │ │ ├── HeaderImageBrushKeys.cs
│ │ │ │ └── ImageBrushKeys.cs
│ │ │ ├── Resources
│ │ │ │ └── Image
│ │ │ │ ├── Background
│ │ │ │ │ ├── b1.jpg
│ │ │ │ │ ├── b10.jpg
│ │ │ │ │ ├── b11.png
│ │ │ │ │ ├── b12.png
│ │ │ │ │ ├── b13.png
│ │ │ │ │ ├── b14.png
│ │ │ │ │ ├── b15.png
│ │ │ │ │ ├── b16.png
│ │ │ │ │ ├── b17.png
│ │ │ │ │ ├── b18.jpg
│ │ │ │ │ ├── b19.png
│ │ │ │ │ ├── b2.jpg
│ │ │ │ │ ├── b20.png
│ │ │ │ │ ├── b21.jpg
│ │ │ │ │ ├── b22.jpg
│ │ │ │ │ ├── b23.png
│ │ │ │ │ ├── b24.jpg
│ │ │ │ │ ├── b25.jpg
│ │ │ │ │ ├── b26.png
│ │ │ │ │ ├── b27.png
│ │ │ │ │ ├── b28.png
│ │ │ │ │ ├── b29.png
│ │ │ │ │ ├── b3.jpg
│ │ │ │ │ ├── b30.png
│ │ │ │ │ ├── b31.png
│ │ │ │ │ ├── b32.png
│ │ │ │ │ ├── b33.png
│ │ │ │ │ ├── b34.png
│ │ │ │ │ ├── b35.png
│ │ │ │ │ ├── b36.png
│ │ │ │ │ ├── b37.png
│ │ │ │ │ ├── b38.png
│ │ │ │ │ ├── b39.png
│ │ │ │ │ ├── b4.png
│ │ │ │ │ ├── b40.png
│ │ │ │ │ ├── b41.png
│ │ │ │ │ ├── b42.png
│ │ │ │ │ ├── b43.png
│ │ │ │ │ ├── b44.png
│ │ │ │ │ ├── b5.png
│ │ │ │ │ ├── b6.png
│ │ │ │ │ ├── b7.png
│ │ │ │ │ ├── b8.png
│ │ │ │ │ └── b9.png
│ │ │ │ ├── Border
│ │ │ │ │ └── bd1.png
│ │ │ │ ├── Cover
│ │ │ │ │ ├── c1.png
│ │ │ │ │ ├── c10.png
│ │ │ │ │ ├── c11.png
│ │ │ │ │ ├── c12.png
│ │ │ │ │ ├── c13.png
│ │ │ │ │ ├── c14.png
│ │ │ │ │ ├── c15.png
│ │ │ │ │ ├── c16.png
│ │ │ │ │ ├── c17.png
│ │ │ │ │ ├── c18.png
│ │ │ │ │ ├── c2.png
│ │ │ │ │ ├── c3.png
│ │ │ │ │ ├── c4.png
│ │ │ │ │ ├── c6.png
│ │ │ │ │ ├── c7.png
│ │ │ │ │ ├── c8.png
│ │ │ │ │ └── c9.png
│ │ │ │ ├── Halo
│ │ │ │ │ ├── halo1.png
│ │ │ │ │ ├── halo10.png
│ │ │ │ │ ├── halo11.png
│ │ │ │ │ ├── halo12.png
│ │ │ │ │ ├── halo13.png
│ │ │ │ │ ├── halo14.png
│ │ │ │ │ ├── halo15.png
│ │ │ │ │ ├── halo16.png
│ │ │ │ │ ├── halo17.png
│ │ │ │ │ ├── halo18.png
│ │ │ │ │ ├── halo19.png
│ │ │ │ │ ├── halo2.png
│ │ │ │ │ ├── halo20.png
│ │ │ │ │ ├── halo21.png
│ │ │ │ │ ├── halo22.png
│ │ │ │ │ ├── halo23.png
│ │ │ │ │ ├── halo24.png
│ │ │ │ │ ├── halo25.png
│ │ │ │ │ ├── halo26.png
│ │ │ │ │ ├── halo27.png
│ │ │ │ │ ├── halo28.png
│ │ │ │ │ ├── halo29.png
│ │ │ │ │ ├── halo3.png
│ │ │ │ │ ├── halo30.png
│ │ │ │ │ ├── halo31.png
│ │ │ │ │ ├── halo32.png
│ │ │ │ │ ├── halo33.png
│ │ │ │ │ ├── halo34.png
│ │ │ │ │ ├── halo35.png
│ │ │ │ │ ├── halo36.png
│ │ │ │ │ ├── halo37.png
│ │ │ │ │ ├── halo38.png
│ │ │ │ │ ├── halo39.png
│ │ │ │ │ ├── halo4.png
│ │ │ │ │ ├── halo40.png
│ │ │ │ │ ├── halo5.png
│ │ │ │ │ ├── halo6.png
│ │ │ │ │ ├── halo7.png
│ │ │ │ │ ├── halo8.png
│ │ │ │ │ └── halo9.png
│ │ │ │ └── Header
│ │ │ │ ├── h1.png
│ │ │ │ ├── h10.png
│ │ │ │ ├── h11.png
│ │ │ │ ├── h12.png
│ │ │ │ ├── h13.png
│ │ │ │ ├── h14.png
│ │ │ │ ├── h15.png
│ │ │ │ ├── h17.png
│ │ │ │ ├── h18.png
│ │ │ │ ├── h19.png
│ │ │ │ ├── h2.png
│ │ │ │ ├── h20.png
│ │ │ │ ├── h21.png
│ │ │ │ ├── h22.png
│ │ │ │ ├── h23.png
│ │ │ │ ├── h24.png
│ │ │ │ ├── h25.png
│ │ │ │ ├── h26.png
│ │ │ │ ├── h27.png
│ │ │ │ ├── h3.png
│ │ │ │ ├── h4.png
│ │ │ │ ├── h41.png
│ │ │ │ ├── h5.png
│ │ │ │ ├── h6.png
│ │ │ │ ├── h7.png
│ │ │ │ ├── h8.png
│ │ │ │ └── h9.png
│ │ │ └── Themes
│ │ │ └── Generic.xaml
│ │ ├── HeBianGu.Service.Interactivity
│ │ │ ├── AssemblyInfo.cs
│ │ │ └── HeBianGu.Service.Interactivity.csproj
│ │ ├── HeBianGu.Service.MarkupExtension
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── HeBianGu.Service.MarkupExtension.csproj
│ │ │ ├── MarkExtension
│ │ │ │ ├── EnumExtension.cs
│ │ │ │ ├── Expression
│ │ │ │ │ ├── ExpressionConverter.cs
│ │ │ │ │ ├── ExpressionConverterExtension.cs
│ │ │ │ │ └── ExpressionConverterExtensionConverter.cs
│ │ │ │ ├── GenericTypeExtension.cs
│ │ │ │ ├── RandomExtension.cs
│ │ │ │ └── SpecialFolderExtension.cs
│ │ │ └── logo.ico
│ │ ├── HeBianGu.Service.Mvc
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Attribute
│ │ │ │ ├── ActionAttribute.cs
│ │ │ │ ├── ControllerAttribute.cs
│ │ │ │ ├── ModuleAttribute.cs
│ │ │ │ └── ViewModelAttribute.cs
│ │ │ ├── Base
│ │ │ │ ├── Action
│ │ │ │ │ ├── ILinkAction.cs
│ │ │ │ │ └── LinkAction.cs
│ │ │ │ ├── Controller
│ │ │ │ │ ├── Controller.cs
│ │ │ │ │ ├── ControllerBase.cs
│ │ │ │ │ ├── IController.cs
│ │ │ │ │ ├── MvcLogControllerBase.cs
│ │ │ │ │ └── MvcNavigationControllerBase.cs
│ │ │ │ ├── IMvcLog.cs
│ │ │ │ └── TypeExtention.cs
│ │ │ ├── HeBianGu.Service.Mvc.csproj
│ │ │ ├── Service
│ │ │ │ ├── IMvcService.cs
│ │ │ │ ├── MvcExtention.cs
│ │ │ │ ├── MvcService.cs
│ │ │ │ └── MvcSetting.cs
│ │ │ └── ViewModelBase
│ │ │ ├── IMvcEntityViewModelBase.cs
│ │ │ ├── IMvcViewModelBase.cs
│ │ │ ├── Log.cs
│ │ │ ├── MvcEntityViewModelBase.cs
│ │ │ ├── MvcLogViewModelBase.cs
│ │ │ ├── MvcShellViewModel.cs
│ │ │ ├── MvcViewModelBase.cs
│ │ │ └── SelectedMvcViewModelBase.cs
│ │ ├── HeBianGu.Service.Mvp
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── HeBianGu.Service.Mvp.csproj
│ │ │ ├── IPresenterService.cs
│ │ │ ├── Mvp.xaml
│ │ │ ├── MvpExtention.cs
│ │ │ ├── MvpSetting.cs
│ │ │ ├── Presenter
│ │ │ │ ├── IAutomationPersenter.cs
│ │ │ │ ├── IInvokePresenter.cs
│ │ │ │ ├── IRepositoryPresenter.cs
│ │ │ │ ├── ISettingViewPresenter.cs
│ │ │ │ ├── InvokeCommand.cs
│ │ │ │ ├── PresenterCommands.cs
│ │ │ │ ├── PresenterIsEnabledExtension.cs
│ │ │ │ └── PresenterVisiblityExtension.cs
│ │ │ └── PresenterService.cs
│ │ ├── HeBianGu.Service.TypeConverter
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── DelegateConverter.cs
│ │ │ ├── DisplayEnumConverter.cs
│ │ │ ├── DisplayNameConverter.cs
│ │ │ ├── HeBianGu.Service.TypeConverter.csproj
│ │ │ └── logo.ico
│ │ ├── HeBianGu.Service.Validation
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Attribute
│ │ │ │ └── TypeConverterValidationAttribute.cs
│ │ │ ├── HeBianGu.Service.Validation.csproj
│ │ │ ├── ValidationModelViewModel.cs
│ │ │ ├── ValidationPropertyChanged.cs
│ │ │ └── ValidationRule
│ │ │ ├── RegularExpressionValidationRule.cs
│ │ │ ├── RequiredValidationRule.cs
│ │ │ └── ValidationRuleBase.cs
│ │ └── HeBianGu.Service.ViewModel
│ │ ├── AssemblyInfo.cs
│ │ ├── HeBianGu.Service.ViewModel.csproj
│ │ └── logo.ico
│ ├── System
│ │ ├── HeBianGu.Systems.Automation
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── AutomationExtention.cs
│ │ │ ├── AutomationPersenter.cs
│ │ │ ├── AutomationSetting.cs
│ │ │ ├── HeBianGu.Systems.Automation.csproj
│ │ │ ├── PresenterAutomation.xaml
│ │ │ ├── PresenterAutomation.xaml.cs
│ │ │ └── Themes
│ │ │ └── Generic.xaml
│ │ ├── HeBianGu.Systems.Component
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Base
│ │ │ │ ├── Action
│ │ │ │ │ ├── Action.cs
│ │ │ │ │ ├── ActionBase.cs
│ │ │ │ │ ├── ActionResult.cs
│ │ │ │ │ ├── IAction.cs
│ │ │ │ │ ├── IActionResult.cs
│ │ │ │ │ ├── INodeActionResult.cs
│ │ │ │ │ └── NodeActionResult.cs
│ │ │ │ ├── Attribute
│ │ │ │ │ └── ComponentAttribute.cs
│ │ │ │ ├── Enum
│ │ │ │ │ ├── ActionState.cs
│ │ │ │ │ └── ResultState.cs
│ │ │ │ ├── Link
│ │ │ │ │ ├── ComponentLink.cs
│ │ │ │ │ ├── ComponentLinkBase.cs
│ │ │ │ │ ├── IComponentLink.cs
│ │ │ │ │ └── Mapper.cs
│ │ │ │ ├── Node
│ │ │ │ │ ├── ComponentNode.cs
│ │ │ │ │ ├── ComponentNodeBase.cs
│ │ │ │ │ ├── IComponentNode.cs
│ │ │ │ │ └── ITemplate.cs
│ │ │ │ ├── Port
│ │ │ │ │ ├── ComponentPort.cs
│ │ │ │ │ ├── ComponentPortBase.cs
│ │ │ │ │ └── IComponentPort.cs
│ │ │ │ └── Serialize
│ │ │ │ ├── ISerialize.cs
│ │ │ │ ├── SerializeData.cs
│ │ │ │ └── SerializeDataProperty.cs
│ │ │ ├── ComponentService.cs
│ │ │ ├── HeBianGu.Systems.Component.csproj
│ │ │ ├── Service
│ │ │ │ ├── Behavior
│ │ │ │ │ ├── DiagramAddLinkBehavior.cs
│ │ │ │ │ └── DiagramDropNodeBehavior.cs
│ │ │ │ ├── ComponentGraphSource.cs
│ │ │ │ ├── If.cs
│ │ │ │ ├── LineComponentNode.cs
│ │ │ │ ├── ProgressComponentNode.cs
│ │ │ │ ├── StartComponentNode.cs
│ │ │ │ └── WaitComponentNode.cs
│ │ │ └── Themes
│ │ │ └── Generic.xaml
│ │ ├── HeBianGu.Systems.Identity
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Base
│ │ │ │ └── IdentifyCommands.cs
│ │ │ ├── HeBianGu.Systems.Identity.csproj
│ │ │ ├── MultiLoginWindow.xaml
│ │ │ ├── MultiLoginWindow.xaml.cs
│ │ │ ├── MultiLoginWindowBase.xaml
│ │ │ ├── MultiLoginWindowBase.xaml.cs
│ │ │ ├── Service
│ │ │ │ ├── Extention.cs
│ │ │ │ ├── IdentityMultiLoginService.cs
│ │ │ │ ├── IdentityService.cs
│ │ │ │ └── XmlIdentityService.cs
│ │ │ └── Themes
│ │ │ └── Generic.xaml
│ │ ├── HeBianGu.Systems.Operation
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── HeBianGu.Systems.Operation.csproj
│ │ │ ├── Operation.cs
│ │ │ ├── OperationConfig.cs
│ │ │ ├── OperationExtention.cs
│ │ │ ├── OperationService.cs
│ │ │ └── Themes
│ │ │ └── Generic.xaml
│ │ ├── HeBianGu.Systems.Project
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Base
│ │ │ │ ├── IProjectConfig.cs
│ │ │ │ ├── IProjectItem.cs
│ │ │ │ ├── ITemplate.cs
│ │ │ │ ├── ProjectItem.cs
│ │ │ │ ├── ProjectItemBase.cs
│ │ │ │ ├── ProjectItemViewModel.cs
│ │ │ │ └── ProjectSaveMode.cs
│ │ │ ├── HeBianGu.Systems.Project.csproj
│ │ │ ├── ProjectListBox.xaml
│ │ │ ├── ProjectListBox.xaml.cs
│ │ │ ├── Service
│ │ │ │ ├── ProjectExtention.cs
│ │ │ │ └── ProjectService.cs
│ │ │ └── Themes
│ │ │ └── Generic.xaml
│ │ ├── HeBianGu.Systems.Repository
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Base
│ │ │ │ ├── IRepository.cs
│ │ │ │ ├── IRepositoryT.cs
│ │ │ │ ├── Repository.cs
│ │ │ │ ├── RepositoryService.cs
│ │ │ │ └── RepositoryTest.cs
│ │ │ ├── ExportXmlCommand.cs
│ │ │ ├── HeBianGu.Systems.Repository.csproj
│ │ │ ├── Interop.cs
│ │ │ ├── RepositoryExtention.cs
│ │ │ ├── RepositorySetting.cs
│ │ │ ├── RespositoryBox.xaml
│ │ │ ├── RespositoryBox.xaml.cs
│ │ │ ├── Service
│ │ │ │ ├── Behavior
│ │ │ │ │ └── RepositorySourceBehavior.cs
│ │ │ │ ├── PropertyItem
│ │ │ │ │ ├── ComboboxRepositoryPropertyItem.cs
│ │ │ │ │ ├── ListBoxRepositoryPropertyItem.cs
│ │ │ │ │ └── MultiSelectRepositoryPropertyItem.cs
│ │ │ │ ├── RepositoryAction.cs
│ │ │ │ ├── View
│ │ │ │ │ ├── RepositoryView.xaml
│ │ │ │ │ └── RepositoryView.xaml.cs
│ │ │ │ └── ViewModel
│ │ │ │ └── RepositoryViewModel.cs
│ │ │ └── Themes
│ │ │ └── Generic.xaml
│ │ ├── HeBianGu.Systems.Setting
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Base
│ │ │ │ ├── FileSetting.cs
│ │ │ │ ├── HotKeySetting.cs
│ │ │ │ ├── LoginSetting.cs
│ │ │ │ ├── MainSetting.cs
│ │ │ │ ├── NotifySetting.cs
│ │ │ │ ├── Setting.cs
│ │ │ │ ├── StateSetting.cs
│ │ │ │ ├── UpgradeSetting.cs
│ │ │ │ └── ViewSetting.cs
│ │ │ ├── HeBianGu.Systems.Setting.csproj
│ │ │ ├── HotKeyTextBoxBehavior.cs
│ │ │ ├── Service
│ │ │ │ ├── SettingViewPresenter.cs
│ │ │ │ ├── SystemSettingConfig.cs
│ │ │ │ ├── SystemSettingExtention.cs
│ │ │ │ └── SystemSettingService.cs
│ │ │ ├── SettingBox.xaml
│ │ │ ├── SettingBox.xaml.cs
│ │ │ ├── SettingDialog.xaml
│ │ │ ├── SettingDialog.xaml.cs
│ │ │ ├── Style
│ │ │ │ └── TransitionPropertyItem.cs
│ │ │ └── Themes
│ │ │ └── Generic.xaml
│ │ ├── HeBianGu.Systems.Upgrade
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Base
│ │ │ │ ├── UpgradeService.cs
│ │ │ │ └── VersionConfig.cs
│ │ │ ├── DownLoadWindow.xaml
│ │ │ ├── DownLoadWindow.xaml.cs
│ │ │ ├── HeBianGu.Systems.Upgrade.csproj
│ │ │ ├── Service
│ │ │ │ ├── UpgradeExtention.cs
│ │ │ │ └── UpgradeInitService.cs
│ │ │ ├── Themes
│ │ │ │ └── Generic.xaml
│ │ │ ├── UpgradeWindow.xaml
│ │ │ └── UpgradeWindow.xaml.cs
│ │ └── HeBianGu.Systems.XmlSerialize
│ │ ├── AssemblyInfo.cs
│ │ ├── HeBianGu.Systems.XmlSerialize.csproj
│ │ ├── MetaSetting.cs
│ │ ├── Themes
│ │ │ └── Generic.xaml
│ │ ├── XmlMetaSettingService.cs
│ │ ├── XmlSerializeExtention.cs
│ │ └── XmlSerializerService.cs
│ ├── Template
│ │ ├── HeBianGu.Template.Link
│ │ │ ├── App.xaml
│ │ │ ├── App.xaml.cs
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── HeBianGu.Template.Link.csproj
│ │ │ ├── MainWindow.xaml
│ │ │ ├── MainWindow.xaml.cs
│ │ │ ├── View
│ │ │ │ ├── Custom
│ │ │ │ │ ├── CustomControl.xaml
│ │ │ │ │ └── CustomControl.xaml.cs
│ │ │ │ ├── Home
│ │ │ │ │ ├── HomeControl.xaml
│ │ │ │ │ └── HomeControl.xaml.cs
│ │ │ │ ├── Layout
│ │ │ │ │ ├── LayoutControl.xaml
│ │ │ │ │ └── LayoutControl.xaml.cs
│ │ │ │ └── Set
│ │ │ │ ├── SetControl.xaml
│ │ │ │ └── SetControl.xaml.cs
│ │ │ ├── ViewModel
│ │ │ │ ├── Custom
│ │ │ │ │ └── CustomViewModel.cs
│ │ │ │ ├── Home
│ │ │ │ │ └── HomeViewModel.cs
│ │ │ │ ├── Layout
│ │ │ │ │ └── LayoutViewModel.cs
│ │ │ │ └── Set
│ │ │ │ └── SetViewModel.cs
│ │ │ └── logo.ico
│ │ └── HeBianGu.Template.Main
│ │ ├── App.xaml
│ │ ├── App.xaml.cs
│ │ ├── AssemblyInfo.cs
│ │ ├── HeBianGu.Template.Main.csproj
│ │ ├── MainWindow.xaml
│ │ ├── MainWindow.xaml.cs
│ │ ├── Provider
│ │ │ └── DataSourceLocator.cs
│ │ ├── ViewModel
│ │ │ └── ShellViewModel.cs
│ │ └── logo.ico
│ └── Window
│ ├── HeBianGu.Window.Blur
│ │ ├── AssemblyInfo.cs
│ │ ├── BlurWindowBase.xaml
│ │ ├── BlurWindowBase.xaml.cs
│ │ ├── HeBianGu.Window.Blur.csproj
│ │ └── Themes
│ │ └── Generic.xaml
│ ├── HeBianGu.Window.Float
│ │ ├── AssemblyInfo.cs
│ │ ├── FloatWindow.xaml
│ │ ├── FloatWindow.xaml.cs
│ │ ├── FloatWindowBase.xaml
│ │ ├── FloatWindowBase.xaml.cs
│ │ ├── HeBianGu.Window.Float.csproj
│ │ └── Themes
│ │ └── Generic.xaml
│ ├── HeBianGu.Window.Link
│ │ ├── AboveManagerWindowBase.xaml
│ │ ├── AboveManagerWindowBase.xaml.cs
│ │ ├── AssemblyInfo.cs
│ │ ├── CrossManagerWindowBase.xaml
│ │ ├── CrossManagerWindowBase.xaml.cs
│ │ ├── CustomManagerWindowBase.xaml
│ │ ├── CustomManagerWindowBase.xaml.cs
│ │ ├── HeBianGu.Window.Link.csproj
│ │ ├── LinkActionFrame.xaml
│ │ ├── LinkActionFrame.xaml.cs
│ │ ├── LinkActionPanel.cs
│ │ ├── LinkActionsContianer.xaml
│ │ ├── LinkActionsContianer.xaml.cs
│ │ ├── LinkActionsManagerWindowBase.xaml
│ │ ├── LinkActionsManagerWindowBase.xaml.cs
│ │ ├── LinkGroupsManagerWindowBase.xaml
│ │ ├── LinkGroupsManagerWindowBase.xaml.cs
│ │ ├── LinkWindowBase.xaml
│ │ ├── LinkWindowBase.xaml.cs
│ │ ├── ManagerWindowBase.xaml
│ │ ├── ManagerWindowBase.xaml.cs
│ │ ├── Mvc
│ │ │ ├── MvcAddFrame.xaml
│ │ │ ├── MvcAddFrame.xaml.cs
│ │ │ ├── MvcCenterFrame.xaml
│ │ │ ├── MvcCenterFrame.xaml.cs
│ │ │ ├── MvcEditFrame.xaml
│ │ │ ├── MvcEditFrame.xaml.cs
│ │ │ ├── MvcListFrame.xaml
│ │ │ ├── MvcListFrame.xaml.cs
│ │ │ ├── MvcNavigationBar.xaml
│ │ │ └── MvcNavigationBar.xaml.cs
│ │ ├── OfficeWindowBase.xaml
│ │ ├── OfficeWindowBase.xaml.cs
│ │ ├── PhoneWindowBase.xaml
│ │ ├── PhoneWindowBase.xaml.cs
│ │ ├── Setting
│ │ │ ├── LinkGroupsManagerWindowSetting.cs
│ │ │ └── LinkWindowExtention.cs
│ │ ├── Themes
│ │ │ └── Generic.xaml
│ │ ├── ToolWindowBase.xaml
│ │ ├── ToolWindowBase.xaml.cs
│ │ └── WindowLinkViewModel.cs
│ ├── HeBianGu.Window.Login
│ │ ├── AssemblyInfo.cs
│ │ ├── HeBianGu.Window.Login.csproj
│ │ ├── LoginWindow.xaml
│ │ ├── LoginWindow.xaml.cs
│ │ ├── LoginWindowBase.xaml
│ │ ├── LoginWindowBase.xaml.cs
│ │ └── Themes
│ │ └── Generic.xaml
│ ├── HeBianGu.Window.Main
│ │ ├── AssemblyInfo.cs
│ │ ├── HeBianGu.Window.Main.csproj
│ │ ├── MainWindow.xaml
│ │ ├── MainWindow.xaml.cs
│ │ └── Themes
│ │ ├── Generic.Default.xaml
│ │ ├── Generic.Single.xaml
│ │ └── Generic.xaml
│ ├── HeBianGu.Window.Menu
│ │ ├── AssemblyInfo.cs
│ │ ├── HeBianGu.Window.Menu.csproj
│ │ ├── MenuWindowBase.xaml
│ │ ├── MenuWindowBase.xaml.cs
│ │ └── Themes
│ │ └── Generic.xaml
│ ├── HeBianGu.Window.Message
│ │ ├── AssemblyInfo.cs
│ │ ├── HeBianGu.Window.Message.csproj
│ │ ├── MessageWindowBase.xaml
│ │ ├── MessageWindowBase.xaml.cs
│ │ ├── Setting
│ │ │ ├── MainWindowExtention.cs
│ │ │ └── MainWindowSetting.cs
│ │ └── Themes
│ │ └── Generic.xaml
│ ├── HeBianGu.Window.MessageDialog
│ │ ├── AssemblyInfo.cs
│ │ ├── HeBianGu.Window.MessageDialog.csproj
│ │ ├── MessageDialogExtention.cs
│ │ ├── MessageDialogService.cs
│ │ ├── MessageDialogWindow.xaml
│ │ ├── MessageDialogWindow.xaml.cs
│ │ └── Themes
│ │ └── Generic.xaml
│ ├── HeBianGu.Window.Notify
│ │ ├── AssemblyInfo.cs
│ │ ├── Extention.cs
│ │ ├── HeBianGu.Window.Notify.csproj
│ │ ├── INotifyMessage.cs
│ │ ├── NotifyDialogWindow.xaml
│ │ ├── NotifyDialogWindow.xaml.cs
│ │ ├── NotifyMessage.cs
│ │ ├── NotifyMessageWindow.xaml
│ │ ├── NotifyMessageWindow.xaml.cs
│ │ ├── NotifyWindowBase.xaml
│ │ ├── NotifyWindowBase.xaml.cs
│ │ └── Themes
│ │ └── Generic.xaml
│ ├── HeBianGu.Window.Ribbon
│ │ ├── AssemblyInfo.cs
│ │ ├── Data
│ │ │ ├── ApplicationMenuItemData.cs
│ │ │ ├── ApplicationSplitMenuItemData.cs
│ │ │ ├── ButtonData.cs
│ │ │ ├── CheckBoxData.cs
│ │ │ ├── ComboBoxData.cs
│ │ │ ├── ContextualTabGroupData.cs
│ │ │ ├── ControlData.cs
│ │ │ ├── GalleryCategoryData.cs
│ │ │ ├── GalleryData.cs
│ │ │ ├── GalleryItemData.cs
│ │ │ ├── GroupData.cs
│ │ │ ├── MenuButtonData.cs
│ │ │ ├── MenuItemData.cs
│ │ │ ├── QATItem.cs
│ │ │ ├── QATItems.cs
│ │ │ ├── RadioButtonData.cs
│ │ │ ├── RecentDocumentData.cs
│ │ │ ├── RibbonData.cs
│ │ │ ├── RowColumnCount.cs
│ │ │ ├── SeparatorData.cs
│ │ │ ├── SplitButtonData.cs
│ │ │ ├── SplitMenuItemData.cs
│ │ │ ├── StylesSet.cs
│ │ │ ├── TabData.cs
│ │ │ ├── TextBoxData.cs
│ │ │ ├── ThemeFonts.cs
│ │ │ └── ToggleButtonData.cs
│ │ ├── DialogWindowExtention.cs
│ │ ├── DialogWindowService.cs
│ │ ├── Extention.cs
│ │ ├── HeBianGu.Window.Ribbon.csproj
│ │ ├── RibbonSet.xaml
│ │ ├── RibbonStyle.xaml
│ │ ├── RibbonTab.xaml
│ │ ├── RibbonWindowBase.xaml
│ │ ├── RibbonWindowBase.xaml.cs
│ │ ├── Service.cs
│ │ └── Themes
│ │ └── Generic.xaml
│ └── HeBianGu.Window.Start
│ ├── AssemblyInfo.cs
│ ├── HeBianGu.Window.Start.csproj
│ ├── MessageStartWindow.xaml
│ ├── MessageStartWindow.xaml.cs
│ ├── StartExtention.cs
│ ├── StartInitService.cs
│ ├── StartSetting.cs
│ ├── StartWindow.xaml
│ ├── StartWindow.xaml.cs
│ ├── StartWindowBase.xaml
│ ├── StartWindowBase.xaml.cs
│ └── Themes
│ └── Generic.xaml
└── 好例子网_WPF-ControlBase-master.zip
598 directories, 2822 files
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
网友评论
我要评论