实例介绍
【实例简介】WPF Modern UI 前端设计的套用模板
1.使用Prism框架,具有页面后退返回和导航条搜索页面的功能。
2.具有CommunityToolkit.Mvvm框架中的消息服务的功能,使用Mvvm模式架构。
3.使用Modern UI设计前段页面。
4.具有前端的增删改查、编辑页面的功能,没有接入后端数据库的接口。
5.具有设置全局主题的颜色样式的功能。
【实例截图】
【核心代码】
.
├── LICENSE
├── README.md
├── WPF Modern UI 前端设计的套用模板_ModernWPFDemo.rar
├── doc
│ └── images
│ ├── LocalDrive.png
│ ├── LocalDrive_Dark.png
│ ├── Login.png
│ └── RemoteDrive.png
└── src
├── GoogleDrive
│ ├── App.config
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── Assets
│ │ ├── Fonts
│ │ │ ├── LICENSE.txt
│ │ │ ├── Roboto-Black.ttf
│ │ │ ├── Roboto-BlackItalic.ttf
│ │ │ ├── Roboto-Bold.ttf
│ │ │ ├── Roboto-BoldItalic.ttf
│ │ │ ├── Roboto-Italic.ttf
│ │ │ ├── Roboto-Light.ttf
│ │ │ ├── Roboto-LightItalic.ttf
│ │ │ ├── Roboto-Medium.ttf
│ │ │ ├── Roboto-MediumItalic.ttf
│ │ │ ├── Roboto-Regular.ttf
│ │ │ ├── Roboto-Thin.ttf
│ │ │ └── Roboto-ThinItalic.ttf
│ │ ├── Icon
│ │ │ └── Google-Drive.ico
│ │ └── SampleMedia
│ │ ├── LandscapeImage1.jpg
│ │ ├── LandscapeImage2.jpg
│ │ ├── LandscapeImage3.jpg
│ │ ├── LandscapeImage4.jpg
│ │ ├── LandscapeImage5.jpg
│ │ ├── LandscapeImage6.jpg
│ │ ├── LandscapeImage7.jpg
│ │ └── LandscapeImage8.jpg
│ ├── Bootstrapper.cs
│ ├── Common
│ │ └── Settings.cs
│ ├── Google Drive.sln
│ ├── GoogleDrive.csproj
│ ├── Libraries
│ │ └── SamplesCommon.dll
│ ├── Message
│ │ └── NotificationMessage.cs
│ ├── Models
│ │ ├── ImageObject.cs
│ │ ├── Instance.cs
│ │ └── NavigationItem.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Region
│ │ └── InternalRegionNames.cs
│ ├── ViewModels
│ │ ├── InstancesViewModel.cs
│ │ ├── LocalDriveViewModel.cs
│ │ ├── MainWindowViewModel.cs
│ │ ├── RecentPhotosViewModel.cs
│ │ ├── RemoteDriveViewModel.cs
│ │ └── SettingsViewModel.cs
│ ├── Views
│ │ ├── Dialogs
│ │ │ ├── EditDialog.xaml
│ │ │ └── EditDialog.xaml.cs
│ │ ├── Instances.xaml
│ │ ├── Instances.xaml.cs
│ │ ├── LocalDrive.xaml
│ │ ├── LocalDrive.xaml.cs
│ │ ├── MainWindow.xaml
│ │ ├── MainWindow.xaml.cs
│ │ ├── RecentPhotos.xaml
│ │ ├── RecentPhotos.xaml.cs
│ │ ├── RemoteDrive.xaml
│ │ ├── RemoteDrive.xaml.cs
│ │ ├── Settings.xaml
│ │ └── Settings.xaml.cs
│ └── obj
│ ├── Debug
│ │ ├── App.baml
│ │ ├── App.g.cs
│ │ ├── App.g.i.cs
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── GoogleDrive.Properties.Resources.resources
│ │ ├── GoogleDrive.csproj.AssemblyReference.cache
│ │ ├── GoogleDrive.csproj.CopyComplete
│ │ ├── GoogleDrive.csproj.CoreCompileInputs.cache
│ │ ├── GoogleDrive.csproj.FileListAbsolute.txt
│ │ ├── GoogleDrive.csproj.GenerateResource.cache
│ │ ├── GoogleDrive.csproj.SuggestedBindingRedirects.cache
│ │ ├── GoogleDrive.exe
│ │ ├── GoogleDrive.exe.config
│ │ ├── GoogleDrive.g.resources
│ │ ├── GoogleDrive.pdb
│ │ ├── GoogleDrive_MarkupCompile.cache
│ │ ├── GoogleDrive_MarkupCompile.i.cache
│ │ ├── GoogleDrive_MarkupCompile.lref
│ │ ├── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ └── Views
│ │ ├── Dialogs
│ │ │ ├── EditDialog.baml
│ │ │ ├── EditDialog.g.cs
│ │ │ └── EditDialog.g.i.cs
│ │ ├── Instances.baml
│ │ ├── Instances.g.cs
│ │ ├── Instances.g.i.cs
│ │ ├── LocalDrive.baml
│ │ ├── LocalDrive.g.cs
│ │ ├── LocalDrive.g.i.cs
│ │ ├── MainWindow.baml
│ │ ├── MainWindow.g.cs
│ │ ├── MainWindow.g.i.cs
│ │ ├── RecentPhotos.baml
│ │ ├── RecentPhotos.g.cs
│ │ ├── RecentPhotos.g.i.cs
│ │ ├── RemoteDrive.baml
│ │ ├── RemoteDrive.g.cs
│ │ ├── RemoteDrive.g.i.cs
│ │ ├── Settings.baml
│ │ ├── Settings.g.cs
│ │ └── Settings.g.i.cs
│ ├── GoogleDrive.csproj.nuget.dgspec.json
│ ├── GoogleDrive.csproj.nuget.g.props
│ ├── GoogleDrive.csproj.nuget.g.targets
│ ├── project.assets.json
│ └── project.nuget.cache
├── GoogleDrive.Authentication
│ ├── AuthenticationModule.cs
│ ├── Business
│ │ ├── Authenticator.cs
│ │ └── IAuthenticator.cs
│ ├── GoogleDrive.Authentication.csproj
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Themes
│ │ └── Generic.xaml
│ ├── ViewModels
│ │ └── LoginViewModel.cs
│ ├── Views
│ │ ├── Login.xaml
│ │ └── Login.xaml.cs
│ └── obj
│ ├── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── GoogleDrive.Authentication.Properties.Resources.resources
│ │ ├── GoogleDrive.Authentication.csproj.AssemblyReference.cache
│ │ ├── GoogleDrive.Authentication.csproj.CopyComplete
│ │ ├── GoogleDrive.Authentication.csproj.CoreCompileInputs.cache
│ │ ├── GoogleDrive.Authentication.csproj.FileListAbsolute.txt
│ │ ├── GoogleDrive.Authentication.csproj.GenerateResource.cache
│ │ ├── GoogleDrive.Authentication.dll
│ │ ├── GoogleDrive.Authentication.g.resources
│ │ ├── GoogleDrive.Authentication.pdb
│ │ ├── GoogleDrive.Authentication_MarkupCompile.cache
│ │ ├── GoogleDrive.Authentication_MarkupCompile.i.cache
│ │ ├── GoogleDrive.Authentication_MarkupCompile.i.lref
│ │ ├── GoogleDrive.Authentication_MarkupCompile.lref
│ │ ├── TempPE
│ │ ├── Themes
│ │ │ └── Generic.baml
│ │ └── Views
│ │ ├── Login.baml
│ │ ├── Login.g.cs
│ │ └── Login.g.i.cs
│ ├── GoogleDrive.Authentication.csproj.nuget.dgspec.json
│ ├── GoogleDrive.Authentication.csproj.nuget.g.props
│ ├── GoogleDrive.Authentication.csproj.nuget.g.targets
│ ├── project.assets.json
│ └── project.nuget.cache
├── GoogleDrive.Core
│ ├── Commands
│ │ └── RelayCommand.cs
│ ├── GoogleDrive.Core.csproj
│ ├── IoC
│ │ └── Container.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Region
│ │ └── RegionNames.cs
│ ├── Themes
│ │ └── Generic.xaml
│ └── obj
│ ├── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── GoogleDrive.Core.Properties.Resources.resources
│ │ ├── GoogleDrive.Core.csproj.AssemblyReference.cache
│ │ ├── GoogleDrive.Core.csproj.CopyComplete
│ │ ├── GoogleDrive.Core.csproj.CoreCompileInputs.cache
│ │ ├── GoogleDrive.Core.csproj.FileListAbsolute.txt
│ │ ├── GoogleDrive.Core.csproj.GenerateResource.cache
│ │ ├── GoogleDrive.Core.dll
│ │ ├── GoogleDrive.Core.g.resources
│ │ ├── GoogleDrive.Core.pdb
│ │ ├── GoogleDrive.Core_MarkupCompile.cache
│ │ ├── GoogleDrive.Core_MarkupCompile.i.cache
│ │ ├── GoogleDrive.Core_MarkupCompile.i.lref
│ │ ├── GoogleDrive.Core_MarkupCompile.lref
│ │ ├── TempPE
│ │ └── Themes
│ ├── GoogleDrive.Core.csproj.nuget.dgspec.json
│ ├── GoogleDrive.Core.csproj.nuget.g.props
│ ├── GoogleDrive.Core.csproj.nuget.g.targets
│ ├── project.assets.json
│ └── project.nuget.cache
├── GoogleDrive.sln
└── bin
├── Debug
│ ├── CommunityToolkit.Mvvm.dll
│ ├── CommunityToolkit.Mvvm.pdb
│ ├── GoogleDrive.Authentication.dll
│ ├── GoogleDrive.Authentication.pdb
│ ├── GoogleDrive.Core.dll
│ ├── GoogleDrive.Core.pdb
│ ├── GoogleDrive.exe
│ ├── GoogleDrive.exe.config
│ ├── GoogleDrive.pdb
│ ├── MaterialDesignColors.dll
│ ├── MaterialDesignColors.pdb
│ ├── MaterialDesignThemes.Wpf.dll
│ ├── MaterialDesignThemes.Wpf.pdb
│ ├── Microsoft.Bcl.AsyncInterfaces.dll
│ ├── Microsoft.Expression.Interactions.dll
│ ├── Microsoft.Xaml.Behaviors.dll
│ ├── Microsoft.Xaml.Behaviors.pdb
│ ├── ModernWpf.Controls.dll
│ ├── ModernWpf.dll
│ ├── Newtonsoft.Json.dll
│ ├── Ookii.Dialogs.Wpf.dll
│ ├── Ookii.Dialogs.Wpf.pdb
│ ├── Prism.Unity.Wpf.dll
│ ├── Prism.Unity.Wpf.pdb
│ ├── Prism.Wpf.dll
│ ├── Prism.Wpf.pdb
│ ├── Prism.dll
│ ├── Prism.pdb
│ ├── SamplesCommon.dll
│ ├── System.Buffers.dll
│ ├── System.ComponentModel.Annotations.dll
│ ├── System.Memory.dll
│ ├── System.Numerics.Vectors.dll
│ ├── System.Runtime.CompilerServices.Unsafe.dll
│ ├── System.Threading.Tasks.Extensions.dll
│ ├── System.ValueTuple.dll
│ ├── System.Windows.Interactivity.dll
│ ├── Unity.Abstractions.dll
│ ├── Unity.Abstractions.pdb
│ ├── Unity.Container.dll
│ ├── Unity.Container.pdb
│ ├── af-ZA
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── am-ET
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── ar-SA
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── az-Latn-AZ
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── be-BY
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── bg-BG
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── bn-BD
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── bs-Latn-BA
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── ca-ES
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── cs-CZ
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── da-DK
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── de-DE
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── el-GR
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── en-GB
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── es-ES
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── es-MX
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── et-EE
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── eu-ES
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── fa-IR
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── fi-FI
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── fr-CA
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── fr-FR
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── gl-ES
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── ha-Latn-NG
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── he-IL
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── hi-IN
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── hr-HR
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── hu-HU
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── id-ID
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── is-IS
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── it-IT
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── ja-JP
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── ka-GE
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── kk-KZ
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── km-KH
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── kn-IN
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── ko-KR
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── lo-LA
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── lt-LT
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── lv-LV
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── mk-MK
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── ml-IN
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── ms-MY
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── nb-NO
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── nl-NL
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── nn-NO
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── pl-PL
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── pt-BR
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── pt-PT
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── ro-RO
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── ru-RU
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── settings
│ │ └── launcher_settings.json
│ ├── sk-SK
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── sl-SI
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── sq-AL
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── sr-Latn-RS
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── sv-SE
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── sw-KE
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── ta-IN
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── te-IN
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── th-TH
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── tr-TR
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── uk-UA
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── uz-Latn-UZ
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── vi-VN
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ ├── zh-CN
│ │ ├── ModernWpf.Controls.resources.dll
│ │ └── ModernWpf.resources.dll
│ └── zh-TW
│ ├── ModernWpf.Controls.resources.dll
│ └── ModernWpf.resources.dll
└── Release
113 directories, 353 files
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论