实例介绍
.NET WinForm 和 WPF 的UI界面库,收集整合多个优秀库及示例。
【实例截图】
【核心代码】
v9eep6.NETWinForm和WPF的UI界面库,收集整合多个优秀库及示例。
└── EASkins
├── Arthas
│ ├── Arthas.csproj
│ ├── Controls
│ │ ├── Converter
│ │ │ ├── CornerRadiusToDouble.cs
│ │ │ ├── DoubleFactor.cs
│ │ │ ├── DoubleToCornerRadius.cs
│ │ │ ├── DoubleToThickness.cs
│ │ │ └── StringToVisibility.cs
│ │ ├── Metro
│ │ │ ├── MetroBorder.cs
│ │ │ ├── MetroButton.cs
│ │ │ ├── MetroCanvasGrid.cs
│ │ │ ├── MetroColorPicker.xaml
│ │ │ ├── MetroColorPicker.xaml.cs
│ │ │ ├── MetroComboBox.cs
│ │ │ ├── MetroComboBoxItem.cs
│ │ │ ├── MetroContextMenu.cs
│ │ │ ├── MetroExpander.cs
│ │ │ ├── MetroFocusButton.cs
│ │ │ ├── MetroGroupBox.cs
│ │ │ ├── MetroImage.cs
│ │ │ ├── MetroMenuItem.cs
│ │ │ ├── MetroMenuSeparator.cs
│ │ │ ├── MetroMenuTabControl.cs
│ │ │ ├── MetroMenuTabItem.cs
│ │ │ ├── MetroPath.cs
│ │ │ ├── MetroProgressBar.cs
│ │ │ ├── MetroRichTextBox.cs
│ │ │ ├── MetroScrollViewer.cs
│ │ │ ├── MetroSwitch.cs
│ │ │ ├── MetroTabControl.cs
│ │ │ ├── MetroTabItem.cs
│ │ │ ├── MetroTextBlock.cs
│ │ │ ├── MetroTextBox.cs
│ │ │ ├── MetroTextButton.cs
│ │ │ ├── MetroThumb.cs
│ │ │ ├── MetroTitleMenu.cs
│ │ │ ├── MetroTitleMenuItem.cs
│ │ │ ├── MetroVisualElement.cs
│ │ │ ├── MetroWaterfallFlow.cs
│ │ │ ├── MetroWebBrowser.xaml
│ │ │ ├── MetroWebBrowser.xaml.cs
│ │ │ └── MetroWindow.cs
│ │ └── Utility.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Resources
│ │ └── Icon.png
│ ├── Themes
│ │ ├── Generic.xaml
│ │ ├── Metro
│ │ │ ├── MetroBase.xaml
│ │ │ ├── MetroButton.xaml
│ │ │ ├── MetroCanvasGrid.xaml
│ │ │ ├── MetroComboBoxItem.xaml
│ │ │ ├── MetroComboBox.xaml
│ │ │ ├── MetroContextMenu.xaml
│ │ │ ├── MetroExpander.xaml
│ │ │ ├── MetroFocusButton.xaml
│ │ │ ├── MetroGroupBox.xaml
│ │ │ ├── MetroImage.xaml
│ │ │ ├── MetroMenuItem.xaml
│ │ │ ├── MetroMenuSeparator.xaml
│ │ │ ├── MetroMenuTabControl.xaml
│ │ │ ├── MetroMenuTabItem.xaml
│ │ │ ├── MetroPath.xaml
│ │ │ ├── MetroProgressBar.xaml
│ │ │ ├── MetroRichTextBox.xaml
│ │ │ ├── MetroScrollViewer.xaml
│ │ │ ├── MetroSwitch.xaml
│ │ │ ├── MetroTabControl.xaml
│ │ │ ├── MetroTabItem.xaml
│ │ │ ├── MetroTextBlock.xaml
│ │ │ ├── MetroTextBox.xaml
│ │ │ ├── MetroTextButton.xaml
│ │ │ ├── MetroTitleMenuItem.xaml
│ │ │ ├── MetroTitleMenu.xaml
│ │ │ ├── MetroVisualElement.xaml
│ │ │ ├── MetroWaterfallFlow.xaml
│ │ │ ├── MetroWindow.xaml
│ │ │ ├── MetroWindow.xaml.cs
│ │ │ └── Metro.xaml
│ │ └── Theme.cs
│ └── Utility
│ ├── Computer
│ │ ├── Screen.cs
│ │ └── TaskBarPostion.cs
│ ├── Element
│ │ ├── ElementBase.cs
│ │ └── VisualObj.cs
│ └── Media
│ ├── HsbaColor.cs
│ ├── ResObj.cs
│ ├── RgbaColor.cs
│ ├── StreamObj.cs
│ └── Utility.cs
├── Arthas.Demo
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── Arthas.Demo.csproj
│ ├── MainWindow.xaml
│ ├── MainWindow.xaml.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ └── Resources
│ ├── about.html
│ ├── editIcon.png
│ ├── iconMove.png
│ ├── icon.png
│ ├── pic.jpg
│ ├── tabIcon.png
│ └── titleMuenIcon.png
├── EASkins
│ ├── EASkins.csproj
│ ├── Material
│ │ ├── Animations
│ │ │ ├── AnimationDirection.cs
│ │ │ ├── AnimationManager.cs
│ │ │ └── Animations.cs
│ │ ├── ColorScheme.cs
│ │ ├── Controls
│ │ │ ├── MaterialCheckbox.cs
│ │ │ ├── MaterialContextMenuStrip.cs
│ │ │ ├── MaterialDivider.cs
│ │ │ ├── MaterialFlatButton.cs
│ │ │ ├── MaterialForm.cs
│ │ │ ├── MaterialLabel.cs
│ │ │ ├── MaterialListView.cs
│ │ │ ├── MaterialMenuStrip.cs
│ │ │ ├── MaterialProgressBar.cs
│ │ │ ├── MaterialRadioButton.cs
│ │ │ ├── MaterialRaisedButton.cs
│ │ │ ├── MaterialSingleLineTextField.cs
│ │ │ ├── MaterialTabControl.cs
│ │ │ └── MaterialTabSelector.cs
│ │ ├── DrawHelper.cs
│ │ ├── IMaterialControl.cs
│ │ ├── MaterialSkinManager.cs
│ │ └── Resources
│ │ ├── Roboto-Medium.ttf
│ │ └── Roboto-Regular.ttf
│ ├── MiTheme
│ │ ├── Ami Theme.cs
│ │ └── Emi Theme.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ └── Resources.resx
│ └── Resources
│ ├── Roboto-Medium.ttf
│ └── Roboto-Regular.ttf
├── EASkins.sln
├── EAStyles
│ ├── bin
│ │ └── Release
│ │ ├── EAStyles.dll
│ │ └── EAStyles.pdb
│ ├── Controls
│ │ ├── ControlUtility.cs
│ │ └── MiStyle
│ │ ├── MiButton.cs
│ │ ├── MiCheckBox.cs
│ │ ├── MiComboBox.cs
│ │ ├── MiDataGrid.cs
│ │ ├── MiDateTimePicker.cs
│ │ ├── MiEfficientDataGrid.cs
│ │ ├── MiListBox.cs
│ │ ├── MiProgressBar.cs
│ │ ├── MiRadioButton.cs
│ │ ├── MiRichButton.cs
│ │ ├── MiRichTextBox.cs
│ │ ├── MiScrollViewer.cs
│ │ ├── MiTabControl.cs
│ │ ├── MiTabItem.cs
│ │ ├── MiTextBlock.cs
│ │ ├── MiTextBox.cs
│ │ ├── MiTitleButton.cs
│ │ ├── MiToggleButton.cs
│ │ └── MiWindow.cs
│ ├── EAStyles.csproj
│ ├── obj
│ │ └── Release
│ │ ├── EAStyles.csproj.CoreCompileInputs.cache
│ │ ├── EAStyles.csproj.FileListAbsolute.txt
│ │ ├── EAStyles.csprojResolveAssemblyReference.cache
│ │ ├── EAStyles.dll
│ │ ├── EAStyles.g.resources
│ │ ├── EAStyles_MarkupCompile.cache
│ │ ├── EAStyles_MarkupCompile.lref
│ │ ├── EAStyles.pdb
│ │ ├── GeneratedInternalTypeHelper.g.cs
│ │ ├── GeneratedInternalTypeHelper.g.i.cs
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ └── Themes
│ │ ├── Generic.baml
│ │ └── MiStyle
│ │ ├── MiBase.baml
│ │ ├── MiDataGrid.baml
│ │ ├── MiScrollViewer.baml
│ │ ├── MiStyle.baml
│ │ ├── MiTabControl.baml
│ │ ├── MiTabItem.baml
│ │ ├── MiTitleButton.baml
│ │ ├── MiToggleButton.baml
│ │ ├── MiWindow.baml
│ │ ├── MiWindow.g.cs
│ │ └── MiWindow.g.i.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Themes
│ │ ├── Generic.xaml
│ │ ├── MiStyle
│ │ │ ├── MiBase.xaml
│ │ │ ├── MiButton.xaml
│ │ │ ├── MiCheckBox.xaml
│ │ │ ├── MiComboBox.xaml
│ │ │ ├── MiDataGrid.xaml
│ │ │ ├── MiEfficientDataGrid.xaml
│ │ │ ├── MiProgressBar.xaml
│ │ │ ├── MiRichButton.xaml
│ │ │ ├── MiRichTextBox.xaml
│ │ │ ├── MiScrollViewer.xaml
│ │ │ ├── MiStyle.xaml
│ │ │ ├── MiTabControl.xaml
│ │ │ ├── MiTabItem.xaml
│ │ │ ├── MiTextBlock.xaml
│ │ │ ├── MiTextBox.xaml
│ │ │ ├── MiTitleButton.xaml
│ │ │ ├── MiToggleButton.xaml
│ │ │ ├── MiWindow.xaml
│ │ │ └── MiWindow.xaml.cs
│ │ └── Theme.cs
│ ├── Utilitys
│ │ ├── Converter
│ │ │ ├── CornerRadiusToDouble.cs
│ │ │ └── StringToVisibility.cs
│ │ ├── Element
│ │ │ ├── ElementBase.cs
│ │ │ └── NotificationElement.cs
│ │ └── Media
│ │ ├── HsbaColor.cs
│ │ ├── RgbaColor.cs
│ │ └── Utility.cs
│ └── WFControls
│ ├── AmiControls.cs
│ └── EmiControls.cs
├── EAWpfDemo
│ ├── App.config
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── EAWpfDemo.csproj
│ ├── MainWindow.xaml
│ ├── MainWindow.xaml.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Resources
│ │ ├── acorn.ico
│ │ └── style.png
│ ├── Style.xaml
│ └── Style.xaml.cs
├── LICENSE
├── MaterialExample
│ ├── App.config
│ ├── MainForm.cs
│ ├── MainForm.Designer.cs
│ ├── MainForm.resx
│ ├── MaterialExample.csproj
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ └── Resources
│ ├── minus.png
│ └── plus.png
├── MetroUiToolkit
│ ├── ButtonDropdown.xaml
│ ├── ButtonDropdown.xaml.cs
│ ├── Converters
│ │ ├── BaseConverter.cs
│ │ └── BoolToVisibilityConverter.cs
│ ├── MetroButton.cs
│ ├── MetroComboBox.cs
│ ├── MetroDataGrid.cs
│ ├── MetroDatePicker.cs
│ ├── MetroListBox.cs
│ ├── MetroScrollBar.cs
│ ├── MetroScrollViewer.cs
│ ├── MetroTabItem.cs
│ ├── MetroTextBox.cs
│ ├── MetroTreeView.cs
│ ├── MetroUiToolkit.csproj
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── SearchBox.cs
│ ├── SelectPager.xaml
│ ├── SelectPager.xaml.cs
│ ├── SimplePager.xaml
│ ├── SimplePager.xaml.cs
│ ├── SlideCheck.xaml
│ ├── SlideCheck.xaml.cs
│ ├── Themes
│ │ ├── Brushes.xaml
│ │ ├── FontSizes.xaml
│ │ ├── Fonts.xaml
│ │ ├── Generic.xaml
│ │ ├── MetroButton.xaml
│ │ ├── MetroComboBox.xaml
│ │ ├── MetroDataGrid.xaml
│ │ ├── MetroDatePicker.xaml
│ │ ├── MetroListBox.xaml
│ │ ├── MetroScrollBar.xaml
│ │ ├── MetroScrollViewer.xaml
│ │ ├── MetroTabItem.xaml
│ │ ├── MetroTextBox.xaml
│ │ ├── MetroTreeView.xaml
│ │ └── SearchBox.xaml
│ ├── WinStatesButton.xaml
│ └── WinStatesButton.xaml.cs
├── MetroUiToolkitDemo
│ ├── App.config
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── MainWindow.xaml
│ ├── MainWindow.xaml.cs
│ ├── MetroUiToolkitDemo.csproj
│ └── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
└── README.md
53 directories, 302 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论