实例介绍
【实例简介】WPF的控件库
* `UI.xaml` 基础样式
* `UI.Light.xaml` 主题样式* `I18N_en-US.xaml` 控件文字默认语言设置 默认为中文
【实例截图】
【核心代码】
.
├── DitTools
│ ├── CC.WPFTools.nupkg
│ ├── LICENSE
│ ├── Lib
│ │ ├── IconFont
│ │ │ ├── demo.css
│ │ │ ├── demo.html
│ │ │ ├── iconfont.css
│ │ │ ├── iconfont.eot
│ │ │ ├── iconfont.svg
│ │ │ ├── iconfont.ttf
│ │ │ └── iconfont.woff
│ │ ├── MicrosoftWindowsShell
│ │ │ └── Microsoft.Windows.Shell.dll
│ │ └── font-awesome-4.7.0
│ │ ├── Font Awesome Cheatsheet.pdf
│ │ ├── HELP-US-OUT.txt
│ │ ├── css
│ │ │ ├── font-awesome.css
│ │ │ └── font-awesome.min.css
│ │ ├── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.svg
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ ├── fontawesome-webfont.woff
│ │ │ └── fontawesome-webfont.woff2
│ │ ├── less
│ │ │ ├── animated.less
│ │ │ ├── bordered-pulled.less
│ │ │ ├── core.less
│ │ │ ├── fixed-width.less
│ │ │ ├── font-awesome.less
│ │ │ ├── icons.less
│ │ │ ├── larger.less
│ │ │ ├── list.less
│ │ │ ├── mixins.less
│ │ │ ├── path.less
│ │ │ ├── rotated-flipped.less
│ │ │ ├── screen-reader.less
│ │ │ ├── stacked.less
│ │ │ └── variables.less
│ │ └── scss
│ │ ├── _animated.scss
│ │ ├── _bordered-pulled.scss
│ │ ├── _core.scss
│ │ ├── _fixed-width.scss
│ │ ├── _icons.scss
│ │ ├── _larger.scss
│ │ ├── _list.scss
│ │ ├── _mixins.scss
│ │ ├── _path.scss
│ │ ├── _rotated-flipped.scss
│ │ ├── _screen-reader.scss
│ │ ├── _stacked.scss
│ │ ├── _variables.scss
│ │ └── font-awesome.scss
│ ├── WPFTools
│ │ ├── Controls
│ │ │ ├── IconButton.cs
│ │ │ ├── IconTextBlock.cs
│ │ │ ├── PasswordBoxEx.cs
│ │ │ ├── ProgressRing.cs
│ │ │ ├── RelativeAnimatingContentControl.cs
│ │ │ ├── SerialPortControls.cs
│ │ │ ├── SlideCheckBox.cs
│ │ │ ├── SpinBox.cs
│ │ │ ├── TextBoxEx.cs
│ │ │ ├── ThemesManger.xaml
│ │ │ └── ThemesManger.xaml.cs
│ │ ├── Converters
│ │ │ ├── BooleanToFontWeightConverter.cs
│ │ │ ├── BooleanToVisibilityConverter.cs
│ │ │ ├── NullOrEmptyStringToVisibilityConverter.cs
│ │ │ ├── NullToVisibilityConverter.cs
│ │ │ ├── ToLowerConverter.cs
│ │ │ └── ToUpperConverter.cs
│ │ ├── Dialogs
│ │ │ ├── AboutDialog.xaml
│ │ │ ├── AboutDialog.xaml.cs
│ │ │ ├── AboutViewModel.cs
│ │ │ ├── MessageDialog.cs
│ │ │ ├── SplashBox.xaml
│ │ │ ├── SplashBox.xaml.cs
│ │ │ └── WaitingBox.cs
│ │ ├── Presentation
│ │ │ ├── AppearanceManager.cs
│ │ │ ├── CommandBase.cs
│ │ │ ├── Displayable.cs
│ │ │ ├── FontSize.cs
│ │ │ ├── Link.cs
│ │ │ ├── LinkCollection.cs
│ │ │ ├── LinkGroup.cs
│ │ │ ├── LinkGroupCollection.cs
│ │ │ ├── NotifyPropertyChanged.cs
│ │ │ ├── ReadOnlyLinkGroupCollection.cs
│ │ │ └── RelayCommand.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Resources
│ │ │ ├── I18N
│ │ │ │ ├── I18N_en-US.xaml
│ │ │ │ └── I18N_zh-CH.xaml
│ │ │ └── ICON
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ ├── iconfont.ttf
│ │ │ └── icons.xaml
│ │ ├── Styles
│ │ │ ├── BootStrap.xaml
│ │ │ ├── Controls
│ │ │ │ ├── Button.xaml
│ │ │ │ ├── Calendar.xaml
│ │ │ │ ├── CheckBox.xaml
│ │ │ │ ├── ComboBox.xaml
│ │ │ │ ├── ContextMenu.xaml
│ │ │ │ ├── Converters.xaml
│ │ │ │ ├── DataGrid.xaml
│ │ │ │ ├── DatePicker.xaml
│ │ │ │ ├── Expander.xaml
│ │ │ │ ├── GridSplitter.xaml
│ │ │ │ ├── GroupBox.xaml
│ │ │ │ ├── Hyperlink.xaml
│ │ │ │ ├── Label.xaml
│ │ │ │ ├── ListBox.xaml
│ │ │ │ ├── ListView.xaml
│ │ │ │ ├── MenuItem.xaml
│ │ │ │ ├── Panels.xaml
│ │ │ │ ├── PasswordBox.xaml
│ │ │ │ ├── ProgressBar.xaml
│ │ │ │ ├── RadioButton.xaml
│ │ │ │ ├── ScrollBar.xaml
│ │ │ │ ├── Slider.xaml
│ │ │ │ ├── StatusBar.xaml
│ │ │ │ ├── TabControl.xaml
│ │ │ │ ├── TextBlock.xaml
│ │ │ │ ├── TextBox.xaml
│ │ │ │ ├── ToolBar.xaml
│ │ │ │ ├── ToolTip.xaml
│ │ │ │ └── TreeView.xaml
│ │ │ ├── ControlsEx
│ │ │ │ ├── IconButton.xaml
│ │ │ │ ├── PasswordBoxEx.xaml
│ │ │ │ ├── ProgressRing.xaml
│ │ │ │ ├── RadioButton.RadioButtonBox.xaml
│ │ │ │ ├── RadioButton.RadioButtonCircle.xaml
│ │ │ │ ├── SerialPortControls.xaml
│ │ │ │ ├── SlideCheckBox.xaml
│ │ │ │ ├── SpinBox.xaml
│ │ │ │ ├── TextBlockEx.xaml
│ │ │ │ └── TextBoxEx.xaml
│ │ │ ├── UI.Dark.xaml
│ │ │ ├── UI.Light.xaml
│ │ │ ├── UI.xaml
│ │ │ └── Windows
│ │ │ ├── MessageDialog.xaml
│ │ │ ├── WaitingBox.xaml
│ │ │ └── WindowBase.xaml
│ │ ├── Themes
│ │ │ └── Generic.xaml
│ │ ├── WPFTools.csproj
│ │ ├── WPFTools.nuspec
│ │ ├── Windows
│ │ │ ├── DpiAwareWindow.cs
│ │ │ ├── DpiInformation.cs
│ │ │ ├── ProcessDpiAwareness.cs
│ │ │ ├── UIHelper.cs
│ │ │ ├── Win32
│ │ │ │ ├── MonitorDpiType.cs
│ │ │ │ ├── NativeMethods.cs
│ │ │ │ ├── OSVersionHelper.cs
│ │ │ │ └── RECT.cs
│ │ │ └── WindowBase.cs
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── Microsoft.Windows.Shell.dll
│ │ │ ├── WPFTools.dll
│ │ │ └── WPFTools.pdb
│ │ └── obj
│ │ └── Debug
│ │ ├── Controls
│ │ │ ├── ThemesManger.baml
│ │ │ ├── ThemesManger.g.cs
│ │ │ └── ThemesManger.g.i.cs
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Dialogs
│ │ │ ├── AboutDialog.baml
│ │ │ ├── AboutDialog.g.cs
│ │ │ ├── AboutDialog.g.i.cs
│ │ │ ├── SplashBox.baml
│ │ │ ├── SplashBox.g.cs
│ │ │ └── SplashBox.g.i.cs
│ │ ├── GeneratedInternalTypeHelper.g.cs
│ │ ├── GeneratedInternalTypeHelper.g.i.cs
│ │ ├── Resources
│ │ │ ├── I18N
│ │ │ │ ├── I18N_en-US.baml
│ │ │ │ └── I18N_zh-CH.baml
│ │ │ └── ICON
│ │ │ └── icons.baml
│ │ ├── Styles
│ │ │ ├── BootStrap.baml
│ │ │ ├── Controls
│ │ │ │ ├── Button.baml
│ │ │ │ ├── Calendar.baml
│ │ │ │ ├── CheckBox.baml
│ │ │ │ ├── ComboBox.baml
│ │ │ │ ├── ContextMenu.baml
│ │ │ │ ├── Converters.baml
│ │ │ │ ├── DataGrid.baml
│ │ │ │ ├── DatePicker.baml
│ │ │ │ ├── Expander.baml
│ │ │ │ ├── GridSplitter.baml
│ │ │ │ ├── GroupBox.baml
│ │ │ │ ├── Hyperlink.baml
│ │ │ │ ├── Label.baml
│ │ │ │ ├── ListBox.baml
│ │ │ │ ├── ListView.baml
│ │ │ │ ├── MenuItem.baml
│ │ │ │ ├── Panels.baml
│ │ │ │ ├── PasswordBox.baml
│ │ │ │ ├── ProgressBar.baml
│ │ │ │ ├── RadioButton.baml
│ │ │ │ ├── ScrollBar.baml
│ │ │ │ ├── Slider.baml
│ │ │ │ ├── StatusBar.baml
│ │ │ │ ├── TabControl.baml
│ │ │ │ ├── TextBlock.baml
│ │ │ │ ├── TextBox.baml
│ │ │ │ ├── ToolBar.baml
│ │ │ │ ├── ToolTip.baml
│ │ │ │ └── TreeView.baml
│ │ │ ├── ControlsEx
│ │ │ │ ├── IconButton.baml
│ │ │ │ ├── PasswordBoxEx.baml
│ │ │ │ ├── ProgressRing.baml
│ │ │ │ ├── RadioButton.RadioButtonBox.baml
│ │ │ │ ├── RadioButton.RadioButtonCircle.baml
│ │ │ │ ├── SerialPortControls.baml
│ │ │ │ ├── SlideCheckBox.baml
│ │ │ │ ├── SpinBox.baml
│ │ │ │ ├── TextBlockEx.baml
│ │ │ │ └── TextBoxEx.baml
│ │ │ ├── UI.Dark.baml
│ │ │ ├── UI.Light.baml
│ │ │ ├── UI.baml
│ │ │ └── Windows
│ │ │ ├── MessageDialog.baml
│ │ │ ├── WaitingBox.baml
│ │ │ └── WindowBase.baml
│ │ ├── TempPE
│ │ ├── Themes
│ │ │ └── Generic.baml
│ │ ├── WPFTools.Properties.Resources.resources
│ │ ├── WPFTools.csproj.AssemblyReference.cache
│ │ ├── WPFTools.csproj.CopyComplete
│ │ ├── WPFTools.csproj.CoreCompileInputs.cache
│ │ ├── WPFTools.csproj.FileListAbsolute.txt
│ │ ├── WPFTools.csproj.GenerateResource.cache
│ │ ├── WPFTools.dll
│ │ ├── WPFTools.g.resources
│ │ ├── WPFTools.pdb
│ │ ├── WPFTools_MarkupCompile.cache
│ │ └── WPFTools_MarkupCompile.lref
│ ├── WPFTools.sln
│ └── WPFToolsDemo
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── BootstrapStyle
│ │ ├── BrushDemo.xaml
│ │ ├── BrushDemo.xaml.cs
│ │ ├── Buttons.xaml
│ │ ├── Buttons.xaml.cs
│ │ ├── ColorPalette.xaml
│ │ ├── ColorPalette.xaml.cs
│ │ ├── Panels.xaml
│ │ ├── Panels.xaml.cs
│ │ ├── TextBlockDemo.xaml
│ │ └── TextBlockDemo.xaml.cs
│ ├── Controls
│ │ ├── Controls.xaml
│ │ ├── Controls.xaml.cs
│ │ ├── NormalControl.xaml
│ │ ├── NormalControl.xaml.cs
│ │ ├── RichTextBox.xaml
│ │ ├── RichTextBox.xaml.cs
│ │ ├── Setting.xaml
│ │ ├── Setting.xaml.cs
│ │ └── SettingViewModel.cs
│ ├── MainWindow.xaml
│ ├── MainWindow.xaml.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── WPFToolsDemo.csproj
│ ├── Windows
│ │ ├── BaseWindow.xaml
│ │ ├── BaseWindow.xaml.cs
│ │ ├── BootstrapDemo.xaml
│ │ ├── BootstrapDemo.xaml.cs
│ │ ├── WindowsTest.xaml
│ │ └── WindowsTest.xaml.cs
│ ├── app.config
│ ├── bin
│ │ └── Debug
│ └── obj
│ └── Debug
│ ├── App.baml
│ ├── App.g.cs
│ ├── App.g.i.cs
│ ├── BootstrapStyle
│ │ ├── BrushDemo.g.cs
│ │ ├── BrushDemo.g.i.cs
│ │ ├── Buttons.g.cs
│ │ ├── Buttons.g.i.cs
│ │ ├── ColorPalette.g.cs
│ │ ├── ColorPalette.g.i.cs
│ │ ├── Panels.g.cs
│ │ ├── Panels.g.i.cs
│ │ ├── TextBlockDemo.g.cs
│ │ └── TextBlockDemo.g.i.cs
│ ├── Controls
│ │ ├── RichTextBox.baml
│ │ ├── RichTextBox.g.cs
│ │ ├── RichTextBox.g.i.cs
│ │ ├── Setting.baml
│ │ ├── Setting.g.cs
│ │ └── Setting.g.i.cs
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── GeneratedInternalTypeHelper.g.cs
│ ├── GeneratedInternalTypeHelper.g.i.cs
│ ├── MainWindow.baml
│ ├── MainWindow.g.cs
│ ├── MainWindow.g.i.cs
│ ├── TempPE
│ └── Windows
│ ├── BootstrapDemo.g.cs
│ └── BootstrapDemo.g.i.cs
└── 好例子网_DitTools.rar
53 directories, 292 files
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论