在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → WPF MVVM开发框架

WPF MVVM开发框架

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:15.74M
  • 下载次数:144
  • 浏览次数:670
  • 发布时间:2021-11-09
  • 实例类别:一般编程问题
  • 发 布 人:js2021
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
WPF编写的MVVM框架,可以拿来直接修改成自己的项目(框架比较基础,但大部分功能已经可以实现)
【实例截图】
【核心代码】
4744302543424025167.rar
└── ZYSystem
├── lib
│   ├── Microsoft.Expression.Controls.dll
│   ├── Microsoft.Expression.Controls.xml
│   ├── Microsoft.Expression.Drawing.dll
│   ├── Microsoft.Expression.Drawing.xml
│   └── WPFToolkit.Extended.dll
├── packages
│   ├── EntityFramework.6.1.1
│   │   ├── content
│   │   │   ├── App.config.transform
│   │   │   └── Web.config.transform
│   │   ├── EntityFramework.6.1.1.nupkg
│   │   ├── lib
│   │   │   ├── net40
│   │   │   │   ├── EntityFramework.dll
│   │   │   │   ├── EntityFramework.SqlServer.dll
│   │   │   │   ├── EntityFramework.SqlServer.xml
│   │   │   │   └── EntityFramework.xml
│   │   │   └── net45
│   │   │   ├── EntityFramework.dll
│   │   │   ├── EntityFramework.SqlServer.dll
│   │   │   ├── EntityFramework.SqlServer.xml
│   │   │   └── EntityFramework.xml
│   │   └── tools
│   │   ├── about_EntityFramework.help.txt
│   │   ├── EntityFramework.PowerShell.dll
│   │   ├── EntityFramework.PowerShell.Utility.dll
│   │   ├── EntityFramework.psd1
│   │   ├── EntityFramework.psm1
│   │   ├── init.ps1
│   │   ├── install.ps1
│   │   └── migrate.exe
│   └── repositories.config
├── Resource
│   ├── bin
│   │   ├── Debug
│   │   │   ├── Resource.dll
│   │   │   └── Resource.pdb
│   │   └── Release
│   ├── obj
│   │   └── Debug
│   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── Resource.csproj.FileListAbsolute.txt
│   │   ├── Resource.csproj.GenerateResource.Cache
│   │   ├── Resource.dll
│   │   ├── Resource_MarkupCompile.i.cache
│   │   ├── Resource.pdb
│   │   ├── Resource.Properties.Resources.resources
│   │   ├── TempPE
│   │   │   └── Properties.Resources.Designer.cs.dll
│   │   └── UserControl1.g.i.cs
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   └── Resource.csproj
├── ZYModel
│   ├── App.config
│   ├── bin
│   │   ├── Debug
│   │   │   ├── EntityFramework.dll
│   │   │   ├── EntityFramework.SqlServer.dll
│   │   │   ├── EntityFramework.SqlServer.xml
│   │   │   ├── EntityFramework.xml
│   │   │   ├── ZYModel.dll
│   │   │   ├── ZYModel.dll.config
│   │   │   └── ZYModel.pdb
│   │   └── Release
│   ├── LDBContext.cs
│   ├── Migrations
│   │   └── Configuration.cs
│   ├── obj
│   │   └── Debug
│   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── TempPE
│   │   ├── ZYModel.csproj.FileListAbsolute.txt
│   │   ├── ZYModel.dll
│   │   └── ZYModel.pdb
│   ├── packages.config
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   └── ZYModel.csproj
├── ZYResource
│   ├── bin
│   │   ├── Debug
│   │   │   ├── Image
│   │   │   │   └── Btn
│   │   │   │   ├── VideoMonitorBtn
│   │   │   │   │   ├── ConnecttingBack.png
│   │   │   │   │   └── UnConnectedBack.png
│   │   │   │   └── VideoPlayBackBtn
│   │   │   │   ├── loading.gif
│   │   │   │   └── PlayBackNoVideo.png
│   │   │   ├── Microsoft.Expression.Controls.dll
│   │   │   ├── Microsoft.Expression.Drawing.dll
│   │   │   ├── WPFToolkit.Extended.dll
│   │   │   ├── YaanTech.VMPTerminal.Resource.dll
│   │   │   ├── YaanTech.VMPTerminal.Resource.pdb
│   │   │   ├── ZYResource.dll
│   │   │   └── ZYResource.pdb
│   │   └── Release
│   ├── Image
│   │   ├── Btn
│   │   │   ├── CheckBoxBtn.png
│   │   │   ├── ExitBtn.png
│   │   │   ├── Favorite
│   │   │   │   ├── favoriteDeleteMouseOver.png
│   │   │   │   ├── favoriteDeleteNormal.png
│   │   │   │   ├── favoriteMoveMouseOver.png
│   │   │   │   ├── favoriteMoveNormal.png
│   │   │   │   ├── favoriteNewMouseOver.png
│   │   │   │   ├── favoriteNewNormal.png
│   │   │   │   ├── favoriteRenameMouseOver.png
│   │   │   │   └── favoriteRenameNormal.png
│   │   │   ├── GISBtn
│   │   │   │   ├── ClearGrahpicsOverBtn.png
│   │   │   │   ├── ClearGraphicsNormalBtn.png
│   │   │   │   ├── ClearGraphicsPressBtn.png
│   │   │   │   ├── DownRightBtn.png
│   │   │   │   ├── FullExtNormalBtn.png
│   │   │   │   ├── FullExtOverBtn.png
│   │   │   │   ├── FullExtPressBtn.png
│   │   │   │   ├── LargeScaleNormalBtn.png
│   │   │   │   ├── LargeScaleOverBtn.png
│   │   │   │   ├── LargeScalePressBtn.png
│   │   │   │   ├── MeasureAreasNormalBtn.png
│   │   │   │   ├── MeasureAreasOverBtn.png
│   │   │   │   ├── MeasureAreasPressBtn.png
│   │   │   │   ├── MeasureLengthsNormalBtn.png
│   │   │   │   ├── MeasureLengthsOverBtn.png
│   │   │   │   ├── MeasureLengthsPressBtn.png
│   │   │   │   ├── MoveDownNormalBtn.png
│   │   │   │   ├── MoveDownOverBtn.png
│   │   │   │   ├── MoveDownPressbtn.png
│   │   │   │   ├── MoveLeftNormalBtn.png
│   │   │   │   ├── MoveLeftOverBtn.png
│   │   │   │   ├── MoveLeftPressBtn.png
│   │   │   │   ├── MoveRightNormalBtn.png
│   │   │   │   ├── MoveRightOverBtn.png
│   │   │   │   ├── MoveRightPressBtn.png
│   │   │   │   ├── MoveUpNormalBtn.png
│   │   │   │   ├── MoveUpOverBtn.png
│   │   │   │   ├── MoveUpPressBtn.png
│   │   │   │   ├── NavigatorBackground.png
│   │   │   │   ├── NextExtNormalBtn.png
│   │   │   │   ├── NextExtOverBtn.png
│   │   │   │   ├── NextExtPressBtn.png
│   │   │   │   ├── PanNormalBtn.png
│   │   │   │   ├── PanOverBtn.png
│   │   │   │   ├── PanPressBtn.png
│   │   │   │   ├── PlayInGISMouseOverBtn.png
│   │   │   │   ├── PlayInGISNormalBtn.png
│   │   │   │   ├── PlayInGISPressedBtn.png
│   │   │   │   ├── PreviousExtNormalBtn.png
│   │   │   │   ├── PreviousExtOverBtn.png
│   │   │   │   ├── PreviousExtPressBtn.png
│   │   │   │   ├── RefreshNormalBtn.png
│   │   │   │   ├── RefreshOverBtn.png
│   │   │   │   ├── RefreshPressBtn.png
│   │   │   │   ├── ScaleSliderThumbBtn.png
│   │   │   │   ├── SelectWithPointNormalBtn.png
│   │   │   │   ├── SelectWithPointOverBtn.png
│   │   │   │   ├── SelectWithPointPressBtn.png
│   │   │   │   ├── SelectWithPolygonNormalBtn.png
│   │   │   │   ├── SelectWithPolygonOverBtn.png
│   │   │   │   ├── SelectWithPolygonPressBtn.png
│   │   │   │   ├── SelectWithRectangleNormalBtn.png
│   │   │   │   ├── SelectWithRectangleOverBtn.png
│   │   │   │   ├── SelectWithRectanglePressBtn.png
│   │   │   │   ├── SmallScaleNormalBtn.png
│   │   │   │   ├── SmallScaleOverBtn.png
│   │   │   │   ├── SmallScalePressBtn.png
│   │   │   │   ├── Symbols
│   │   │   │   │   ├── BallMachineOffline.png
│   │   │   │   │   ├── BallMachineOfflineSelected.png
│   │   │   │   │   ├── BallMachineOnline.png
│   │   │   │   │   ├── BallMachineSelected.png
│   │   │   │   │   ├── CloudPlatformOffline.png
│   │   │   │   │   ├── CloudPlatformOfflineSelected.png
│   │   │   │   │   ├── CloudPlatformOnline.png
│   │   │   │   │   ├── CloudPlatformSelected.png
│   │   │   │   │   ├── ElectronicSentryOffline.png
│   │   │   │   │   ├── ElectronicSentryOfflineSelected.png
│   │   │   │   │   ├── ElectronicSentryOnline.png
│   │   │   │   │   ├── ElectronicSentryOnlineSelected.png
│   │   │   │   │   ├── GunMachineOffline.png
│   │   │   │   │   ├── GunMachineOfflineSelected.png
│   │   │   │   │   ├── GunMachineOnline.png
│   │   │   │   │   ├── GunMachineSelected.png
│   │   │   │   │   ├── HalfBallMachineOffline.png
│   │   │   │   │   ├── HalfBallMachineOnline.png
│   │   │   │   │   ├── HalfBallMachineSelectOffline.png
│   │   │   │   │   ├── HalfBallMachineSelectOnline.png
│   │   │   │   │   ├── HighLightCamera.png
│   │   │   │   │   ├── HighLightInMap.png
│   │   │   │   │   ├── HighLightPointSymbol.png
│   │   │   │   │   └── Transparent.png
│   │   │   │   ├── ToolBarBackground.png
│   │   │   │   ├── UpLeftBtn.png
│   │   │   │   ├── ZoomInNormalBtn.png
│   │   │   │   ├── ZoomInOverBtn.png
│   │   │   │   ├── ZoomInPressBtn.png
│   │   │   │   ├── ZoomOutNormalBtn.png
│   │   │   │   ├── ZoomOutOverBtn.png
│   │   │   │   └── ZoomOutPressBtn.png
│   │   │   ├── LockBtn.png
│   │   │   ├── MinimizeBtn.png
│   │   │   ├── OpLogBtn.png
│   │   │   ├── PTZBtn
│   │   │   │   ├── autoMouseOver.png
│   │   │   │   ├── autoNormal.png
│   │   │   │   ├── autoUpPress.png
│   │   │   │   ├── DecreaseFree.png
│   │   │   │   ├── DecreaseOver.png
│   │   │   │   ├── DecreasePressed.png
│   │   │   │   ├── DirectionBack.png
│   │   │   │   ├── IncreaseFree.png
│   │   │   │   ├── IncreaseOver.png
│   │   │   │   ├── IncreasePressed.png
│   │   │   │   ├── LightMouseOver.png
│   │   │   │   ├── LightNormal.png
│   │   │   │   ├── LightOffMouseOver.png
│   │   │   │   ├── LightOffNormal.png
│   │   │   │   ├── LightOffPress.png
│   │   │   │   ├── LightOnMouseOver.png
│   │   │   │   ├── LightOnNormal.png
│   │   │   │   ├── LightOnPress.png
│   │   │   │   ├── LightPress.png
│   │   │   │   ├── ParaBackGround.png
│   │   │   │   ├── ParamDecreaseNormal.png
│   │   │   │   ├── ParamDecreaseOver.png
│   │   │   │   ├── ParamDecreasePress.png
│   │   │   │   ├── ParamIncreaseNormal.png
│   │   │   │   ├── ParamIncreaseOver.png
│   │   │   │   ├── ParamIncreasePress.png
│   │   │   │   ├── PTZAutoMouseOver.png
│   │   │   │   ├── PTZAuto.png
│   │   │   │   ├── PTZBackGround.png
│   │   │   │   ├── PTZUnAuto.png
│   │   │   │   ├── PTZUpNormal.png
│   │   │   │   ├── PTZUpPress.png
│   │   │   │   ├── PTZUpSmallNormal.png
│   │   │   │   ├── PTZUpSmallPress.png
│   │   │   │   ├── SpeedBlueBackGround.png
│   │   │   │   ├── SpeedGrayBackGround.png
│   │   │   │   ├── stopAutoMouseOver.png
│   │   │   │   ├── stopAutoNormal.png
│   │   │   │   ├── stopAutoUpPress.png
│   │   │   │   ├── TabControlHeaderBack.png
│   │   │   │   ├── WiperMouseOver.png
│   │   │   │   ├── WiperNormal.png
│   │   │   │   ├── WiperOffMouseOver.png
│   │   │   │   ├── WiperOffNormal.png
│   │   │   │   ├── WiperOffPress.png
│   │   │   │   ├── WiperOnMouseOver.png
│   │   │   │   ├── WiperOnNormal.png
│   │   │   │   ├── WiperOnPress.png
│   │   │   │   └── WiperPress.png
│   │   │   ├── RadioButton.png
│   │   │   ├── SettingBtn.png
│   │   │   ├── VideoDecodeBtn
│   │   │   │   ├── checkedfalse.png
│   │   │   │   ├── checkedtrue.png
│   │   │   │   ├── OneViewPress.png
│   │   │   │   ├── OneViewsMouseOver.png
│   │   │   │   ├── OneViewsNomal.png
│   │   │   │   ├── ReStartBtn.png
│   │   │   │   ├── SelWallMouseOver.png
│   │   │   │   ├── SelWallNomal.png
│   │   │   │   └── SelWallPress.png
│   │   │   ├── VideoMonitorBtn
│   │   │   │   ├── CaptureMouseOver.png
│   │   │   │   ├── CaptureNormal.png
│   │   │   │   ├── CapturePress.png
│   │   │   │   ├── CloseAllVideoMouseOver.png
│   │   │   │   ├── CloseAllVideoNormal.png
│   │   │   │   ├── CloseAllVideoPress.png
│   │   │   │   ├── CloseSingleViewMouseOver.png
│   │   │   │   ├── CloseSingleViewNormal.png
│   │   │   │   ├── CloseSingleViewPress.png
│   │   │   │   ├── ConnecttingBack.png
│   │   │   │   ├── ContinuousCaptrueMouseOver.png
│   │   │   │   ├── ContinuousCaptrueNormal.png
│   │   │   │   ├── ContinuousCaptruePress.png
│   │   │   │   ├── EightViewsMouseOver.png
│   │   │   │   ├── EightViewsNormal.png
│   │   │   │   ├── EightViewsPress.png
│   │   │   │   ├── FillMouseOver.png
│   │   │   │   ├── FillNormal.png
│   │   │   │   ├── FillPressed.png
│   │   │   │   ├── FourViewsMouseOver.png
│   │   │   │   ├── FourViewsNormal.png
│   │   │   │   ├── FourViewsPress.png
│   │   │   │   ├── FullScreenMouseOverBtn.png
│   │   │   │   ├── FullScreenNormalBtn.png
│   │   │   │   ├── FullScreenPressBtn.png
│   │   │   │   ├── HideTitleMouseOver.png
│   │   │   │   ├── HideTitleNormal.png
│   │   │   │   ├── HideTitlePress.png
│   │   │   │   ├── LeftToolThinLine.png
│   │   │   │   ├── LoopTestingMouseOver.png
│   │   │   │   ├── LoopTestingNormal.png
│   │   │   │   ├── LoopTestingPress.png
│   │   │   │   ├── MouseOverBackGround.png
│   │   │   │   ├── NineViewsMouseOver.png
│   │   │   │   ├── NineViewsNormal.png
│   │   │   │   ├── NineViewsPress.png
│   │   │   │   ├── PressBackGround.png
│   │   │   │   ├── PTZMouseOver.png
│   │   │   │   ├── PTZNormal.png
│   │   │   │   ├── PTZPress.png
│   │   │   │   ├── RecordMouseOver.png
│   │   │   │   ├── RecordNormal.png
│   │   │   │   ├── RecordPress.png
│   │   │   │   ├── SelectLagerMouseOver.png
│   │   │   │   ├── SelectLagerNormal.png
│   │   │   │   ├── SelectLagerPress.png
│   │   │   │   ├── SevenViewsMouseOver.png
│   │   │   │   ├── SevenViewsNormal.png
│   │   │   │   ├── SevenViewsPress.png
│   │   │   │   ├── SingleViewToolBack.png
│   │   │   │   ├── SixteenViewsMouseOver.png
│   │   │   │   ├── SixteenViewsNormal.png
│   │   │   │   ├── SixteenViewsPress.png
│   │   │   │   ├── SixViewsMouseOver.png
│   │   │   │   ├── SixViewsNormal.png
│   │   │   │   ├── SixViewsPress.png
│   │   │   │   ├── SoundControlMouseOver.png
│   │   │   │   ├── SoundControlNormal.png
│   │   │   │   ├── SoundControlPress.png
│   │   │   │   ├── TalkbackNormal.png
│   │   │   │   ├── TalkbackSpeaking.png
│   │   │   │   ├── ThirteenViewsMouseOver.png
│   │   │   │   ├── ThirteenViewsNormal.png
│   │   │   │   ├── ThirteenViewsPress.png
│   │   │   │   ├── UnConnectedBack.png
│   │   │   │   └── Voice.png
│   │   │   └── VideoPlayBackBtn
│   │   │   ├── CloseAll.png
│   │   │   ├── CloseAllSelected.png
│   │   │   ├── ControlVideoLoopMouseOver.png
│   │   │   ├── ControlVideoLoop.png
│   │   │   ├── ControlVideoLoopPress.png
│   │   │   ├── ControlVideoLoopSeleted.png
│   │   │   ├── CutMouseOver.png
│   │   │   ├── CutNormal.png
│   │   │   ├── CutPressDown.png
│   │   │   ├── Diamond.png
│   │   │   ├── DisplayfastBack.png
│   │   │   ├── DisplayfastBackSelected.png
│   │   │   ├── DisplayFastForward.png
│   │   │   ├── DisplayFastForwardSeleted.png
│   │   │   ├── DisplayFrameBack.png
│   │   │   ├── DisplayFrameBackSeleted.png
│   │   │   ├── DisplayFrameForward.png
│   │   │   ├── DisplayFrameForwardSeleted.png
│   │   │   ├── DisplayMouseDownBackground.png
│   │   │   ├── DisplayPause.png
│   │   │   ├── Display.png
│   │   │   ├── DisplaySelected.png
│   │   │   ├── DisplaySkipTo.png
│   │   │   ├── DisplaySkipToSelected.png
│   │   │   ├── DisplayslowBack.png
│   │   │   ├── DisplayslowBackSelected.png
│   │   │   ├── DisplaySlowForward.png
│   │   │   ├── DisplaySlowForwardSeleted.png
│   │   │   ├── DisplayStop.png
│   │   │   ├── DisplayStopSeleted.png
│   │   │   ├── DownLoadBegin.png
│   │   │   ├── DownLoadBeginPress.png
│   │   │   ├── DownLoadCancel.png
│   │   │   ├── DownLoadCancelPress.png
│   │   │   ├── DownloadDraftMouseOver.png
│   │   │   ├── DownloadDraft.png
│   │   │   ├── Download.png
│   │   │   ├── DownloadRevertMouseOver.png
│   │   │   ├── DownloadRevert.png
│   │   │   ├── DownloadRevertPress.png
│   │   │   ├── DownLoadSmall.png
│   │   │   ├── DownLoadStop.png
│   │   │   ├── DownLoadStopPress.png
│   │   │   ├── DownLoadSubpendMouseOver.png
│   │   │   ├── DownLoadSubpend.png
│   │   │   ├── DownLoadSubpendPress.png
│   │   │   ├── DownStateDownloadedMouseOver.png
│   │   │   ├── DownStateDownloaded.png
│   │   │   ├── DownStateDownloading.png
│   │   │   ├── DownStateDownloadingPress.png
│   │   │   ├── DownStateWating.png
│   │   │   ├── Faverite.png
│   │   │   ├── FaveriteSmall.png
│   │   │   ├── loading.gif
│   │   │   ├── One.png
│   │   │   ├── OneSelected.png
│   │   │   ├── PlayBackNoVideo.png
│   │   │   ├── ProgessbarBackground.png
│   │   │   └── Round.png
│   │   ├── Expander
│   │   │   ├── ExpandDownwardBtn.png
│   │   │   ├── ExpanderHeaderBackground.png
│   │   │   └── ExpandUpBtn.png
│   │   ├── LocalManager
│   │   │   └── errorfile.png
│   │   ├── Logo
│   │   │   ├── Logo.png
│   │   │   └── LogoWhite.png
│   │   ├── OMTreeView
│   │   │   ├── Actual.png
│   │   │   ├── Client.png
│   │   │   ├── DecodeHost.png
│   │   │   ├── DownLoad.png
│   │   │   ├── HeadendDevice.png
│   │   │   ├── HomeDomain.png
│   │   │   ├── OnlineList.png
│   │   │   ├── PTZcamera.png
│   │   │   ├── RuntimeData.png
│   │   │   ├── Servicer.png
│   │   │   ├── SessionsList.png
│   │   │   ├── TrafficStatistics.png
│   │   │   └── Video.png
│   │   ├── Others
│   │   │   ├── LeftToolBarStartLine.png
│   │   │   ├── ServerStateLight
│   │   │   │   ├── BlueLight.png
│   │   │   │   └── Redlight.png
│   │   │   ├── Shell
│   │   │   │   ├── ExitSys.png
│   │   │   │   ├── LockTag.png
│   │   │   │   ├── LoginBackground.png
│   │   │   │   ├── LoginBlue.png
│   │   │   │   ├── LoginSettingDown.png
│   │   │   │   ├── LoginSetting.png
│   │   │   │   ├── LoginSettingUp.png
│   │   │   │   ├── Query.png
│   │   │   │   ├── shellTitleArrowsBack.png
│   │   │   │   ├── shellTitleArrows.png
│   │   │   │   ├── SysSetting.png
│   │   │   │   └── user.png
│   │   │   └── VideoDecode
│   │   │   ├── grayStateShow.png
│   │   │   ├── greenStateShow.png
│   │   │   ├── offline.png
│   │   │   ├── online.png
│   │   │   ├── redStateShow.png
│   │   │   └── yelloStateShow.png
│   │   ├── ScrollBar
│   │   │   ├── PageDownButtonBackground.png
│   │   │   ├── PageLeftButtonBackground.png
│   │   │   ├── PageRightButtonBackGround.png
│   │   │   ├── PageUpButtonBackground.png
│   │   │   └── ThumbBackground.png
│   │   ├── TreeView
│   │   │   ├── DomeOffLine.png
│   │   │   ├── DomeOnline.png
│   │   │   ├── DvrOffline.png
│   │   │   ├── DvrOnline.png
│   │   │   ├── DvsOffline.png
│   │   │   ├── DvsOnline.png
│   │   │   ├── ElectronicSentinelOffLine.png
│   │   │   ├── ElectronicSentinelOnLine.png
│   │   │   ├── FavoriteGroup.png
│   │   │   ├── Group.png
│   │   │   ├── GunOffLine.png
│   │   │   ├── GunOnline.png
│   │   │   ├── HalfDomeOffLine.png
│   │   │   ├── HalfDomeOnLine.png
│   │   │   ├── NvrOffline.png
│   │   │   ├── NvrOnline.png
│   │   │   ├── OnlineAgentImage.png
│   │   │   ├── PhysicalServerImage.png
│   │   │   ├── ProcessImage.png
│   │   │   ├── PtzOffline.png
│   │   │   ├── PtzOnline.png
│   │   │   ├── Thetitlebar.png
│   │   │   ├── TreeViewExpandedBtn.png
│   │   │   └── TreeViewUnExpandedBtn.png
│   │   └── ZY
│   │   └── zylog.png
│   ├── obj
│   │   └── Debug
│   │   ├── DesignTimeResolveAssemblyReferences.cache
│   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── GenerateResource.read.1.tlog
│   │   ├── GenerateResource.write.1.tlog
│   │   ├── ResolveAssemblyReference.cache
│   │   ├── TempPE
│   │   │   └── Properties.Resources.Designer.cs.dll
│   │   ├── Wpf
│   │   │   ├── BorderStyleDic.baml
│   │   │   ├── BrushResourceDic.baml
│   │   │   ├── ButtonResourceDic.baml
│   │   │   ├── CheckBoxResourceDic.baml
│   │   │   ├── ComboBoxResourceDic.baml
│   │   │   ├── CommonResourceDic.baml
│   │   │   ├── ContextMenuResourceDic.baml
│   │   │   ├── DataGridResourceDic.baml
│   │   │   ├── DateTimePickerResourceDic.baml
│   │   │   ├── ExpanderResourceDic.baml
│   │   │   ├── IntegerUpDownResourceDic.baml
│   │   │   ├── ListBoxResourceDic.baml
│   │   │   ├── ProgressBarResourceDic.baml
│   │   │   ├── ScrollBarResourceDic.baml
│   │   │   ├── SliderResourceDic.baml
│   │   │   ├── TabControlResourceDic.baml
│   │   │   ├── TextBoxResourceDic.baml
│   │   │   ├── ToolTipResourceDic.baml
│   │   │   └── TreeViewResourceDic.baml
│   │   ├── YaanTech.VMPTerminal.Resource.csproj.FileListAbsolute.txt
│   │   ├── YaanTech.VMPTerminal.Resource.csproj.ResolveComReference.cache
│   │   ├── YaanTech.VMPTerminal.Resource.dll
│   │   ├── YaanTech.VMPTerminal.Resource.g.resources
│   │   ├── YaanTech.VMPTerminal.Resource_MarkupCompile.cache
│   │   ├── YaanTech.VMPTerminal.Resource_MarkupCompile.i.cache
│   │   ├── YaanTech.VMPTerminal.Resource.pdb
│   │   ├── YaanTech.VMPTerminal.Resource.Properties.Resources.resources
│   │   ├── ZYResource.csproj.FileListAbsolute.txt
│   │   ├── ZYResource.csproj.GenerateResource.Cache
│   │   ├── ZYResource.csproj.ResolveComReference.cache
│   │   ├── ZYResource.dll
│   │   ├── ZYResource.g.resources
│   │   ├── ZYResource_MarkupCompile.cache
│   │   ├── ZYResource_MarkupCompile.i.cache
│   │   ├── ZYResource.pdb
│   │   └── ZYResource.Properties.Resources.resources
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── Wpf
│   │   ├── BorderStyleDic.xaml
│   │   ├── BrushResourceDic.xaml
│   │   ├── ButtonResourceDic.xaml
│   │   ├── CheckBoxResourceDic.xaml
│   │   ├── ComboBoxResourceDic.xaml
│   │   ├── CommonResourceDic.xaml
│   │   ├── ContextMenuResourceDic.xaml
│   │   ├── DataGridResourceDic.xaml
│   │   ├── DateTimePickerResourceDic.xaml
│   │   ├── ExpanderResourceDic.xaml
│   │   ├── IntegerUpDownResourceDic.xaml
│   │   ├── ListBoxResourceDic.xaml
│   │   ├── ProgressBarResourceDic.xaml
│   │   ├── ScrollBarResourceDic.xaml
│   │   ├── SliderResourceDic.xaml
│   │   ├── TabControlResourceDic.xaml
│   │   ├── TextBoxResourceDic.xaml
│   │   ├── ToolTipResourceDic.xaml
│   │   └── TreeViewResourceDic.xaml
│   └── ZYResource.csproj
├── ZYSystem
│   ├── App.config
│   ├── App.xaml
│   ├── App.xaml.cs
│   ├── bin
│   │   └── Debug
│   │   ├── EntityFramework.dll
│   │   ├── EntityFramework.SqlServer.dll
│   │   ├── EntityFramework.SqlServer.xml
│   │   ├── EntityFramework.xml
│   │   ├── Image
│   │   │   └── Btn
│   │   │   ├── VideoMonitorBtn
│   │   │   │   ├── ConnecttingBack.png
│   │   │   │   └── UnConnectedBack.png
│   │   │   └── VideoPlayBackBtn
│   │   │   ├── loading.gif
│   │   │   └── PlayBackNoVideo.png
│   │   ├── ZYModel.dll
│   │   ├── ZYModel.pdb
│   │   ├── ZYResource.dll
│   │   ├── ZYResource.pdb
│   │   ├── ZYSystem.exe
│   │   ├── ZYSystem.exe.config
│   │   ├── ZYSystem.pdb
│   │   ├── ZYSystemVideModel.dll
│   │   ├── ZYSystemVideModel.pdb
│   │   ├── ZYSystem.vshost.exe
│   │   ├── ZYSystem.vshost.exe.config
│   │   └── ZYSystem.vshost.exe.manifest
│   ├── MainWindow.xaml
│   ├── MainWindow.xaml.cs
│   ├── obj
│   │   └── x86
│   │   └── Debug
│   │   ├── App.baml
│   │   ├── App.g.cs
│   │   ├── App.g.i.cs
│   │   ├── DesignTimeResolveAssemblyReferences.cache
│   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── GeneratedInternalTypeHelper.g.cs
│   │   ├── GeneratedInternalTypeHelper.g.i.cs
│   │   ├── GenerateResource.read.1.tlog
│   │   ├── GenerateResource.write.1.tlog
│   │   ├── MainWindow.baml
│   │   ├── MainWindow.g.cs
│   │   ├── MainWindow.g.i.cs
│   │   ├── ResolveAssemblyReference.cache
│   │   ├── TempPE
│   │   │   └── Properties.Resources.Designer.cs.dll
│   │   ├── View
│   │   │   ├── TextControl.baml
│   │   │   ├── TextControl.g.cs
│   │   │   └── TextControl.g.i.cs
│   │   ├── ZYSystem.csproj.FileListAbsolute.txt
│   │   ├── ZYSystem.csproj.GenerateResource.Cache
│   │   ├── ZYSystem.csprojResolveAssemblyReference.cache
│   │   ├── ZYSystemDic.baml
│   │   ├── ZYSystem.exe
│   │   ├── ZYSystem.g.resources
│   │   ├── ZYSystem_MarkupCompile.cache
│   │   ├── ZYSystem_MarkupCompile.i.cache
│   │   ├── ZYSystem_MarkupCompile.i.lref
│   │   ├── ZYSystem_MarkupCompile.lref
│   │   ├── ZYSystem.pdb
│   │   └── ZYSystem.Properties.Resources.resources
│   ├── packages.config
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── View
│   │   ├── TextControl.xaml
│   │   └── TextControl.xaml.cs
│   ├── ZYSystem.csproj
│   └── ZYSystemDic.xaml
├── ZYSystem.sln
├── ZYSystem.suo
└── ZYSystemVideModel
├── bin
│   ├── Debug
│   │   ├── ZYSystemVideModel.dll
│   │   └── ZYSystemVideModel.pdb
│   └── Release
├── Helpers
│   ├── MessageException.cs
│   └── MessageHelper.cs
├── Items
│   └── CommandViewModel.cs
├── MainWindowViewModel.cs
├── obj
│   └── Debug
│   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   ├── GenerateResource.read.1.tlog
│   ├── GenerateResource.write.1.tlog
│   ├── TempPE
│   │   └── Properties.Resources.Designer.cs.dll
│   ├── UserControl1.g.i.cs
│   ├── ZYSystemVideModel.csproj.FileListAbsolute.txt
│   ├── ZYSystemVideModel.csproj.GenerateResource.Cache
│   ├── ZYSystemVideModel.dll
│   ├── ZYSystemVideModel_MarkupCompile.i.cache
│   ├── ZYSystemVideModel.pdb
│   └── ZYSystemVideModel.Properties.Resources.resources
├── Properties
│   ├── AssemblyInfo.cs
│   ├── Resources.Designer.cs
│   ├── Resources.resx
│   ├── Settings.Designer.cs
│   └── Settings.settings
├── RelayCommand.cs
├── ViewModel
│   └── TextControlViewModel.cs
├── ViewModelBase.cs
├── WorkspaceViewModel.cs
└── ZYSystemVideModel.csproj

85 directories, 587 files

标签:

实例下载地址

WPF MVVM开发框架

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警