实例介绍
【实例简介】wpf控件库:实现了常用的WPF控件
【实例截图】
【核心代码】
.
├── MKControl
│ ├── MKControl
│ │ ├── Attach
│ │ │ └── ThicknessAttach.cs
│ │ ├── Common
│ │ │ ├── AnimationHelper.cs
│ │ │ ├── ToolClass.cs
│ │ │ ├── VerificationHelper.cs
│ │ │ └── WindowHelper.cs
│ │ ├── Controls
│ │ │ ├── Badge
│ │ │ │ └── MKBadge.cs
│ │ │ ├── Base
│ │ │ │ ├── BaseButton.cs
│ │ │ │ ├── BaseComboBox.cs
│ │ │ │ ├── BaseListBox.cs
│ │ │ │ └── BaseTextBox.cs
│ │ │ ├── Border
│ │ │ │ └── ClippingBorder.cs
│ │ │ ├── Button
│ │ │ │ ├── MKButton.cs
│ │ │ │ ├── MKClearButton.cs
│ │ │ │ ├── MKIconButton.cs
│ │ │ │ └── MKWaveButton.cs
│ │ │ ├── ButtonGroup
│ │ │ │ ├── MKButtonGroup.cs
│ │ │ │ └── MKButtonGroupItem.cs
│ │ │ ├── CheckBox
│ │ │ │ └── MKCheckBox.cs
│ │ │ ├── ComboBox
│ │ │ │ ├── MKComboBox.cs
│ │ │ │ └── MKMultiComboBox.cs
│ │ │ ├── Dashboard
│ │ │ │ └── MKDashboard.cs
│ │ │ ├── Divider
│ │ │ │ └── MKDivider.cs
│ │ │ ├── GroupBox
│ │ │ │ └── MKGroupBox.cs
│ │ │ ├── ImageView
│ │ │ │ └── MKImageView.cs
│ │ │ ├── Input
│ │ │ │ ├── MKNumberBox.cs
│ │ │ │ ├── MKPasswordBox.cs
│ │ │ │ ├── MKTextArea.cs
│ │ │ │ └── MKTextBox.cs
│ │ │ ├── ListBox
│ │ │ │ └── MKListBox.cs
│ │ │ ├── Loading
│ │ │ │ └── MKLoading.cs
│ │ │ ├── MessageBox
│ │ │ │ ├── MKMessageBox.cs
│ │ │ │ ├── MKMessageBoxWindow.xaml
│ │ │ │ └── MKMessageBoxWindow.xaml.cs
│ │ │ ├── Pager
│ │ │ │ └── MKPager.cs
│ │ │ ├── Panel
│ │ │ │ └── MKPanel.cs
│ │ │ ├── ProgressBar
│ │ │ │ ├── MKCircleProgressBar.cs
│ │ │ │ └── MKProgressBar.cs
│ │ │ ├── RadioButton
│ │ │ │ └── MKRadioButton.cs
│ │ │ ├── ScrollViewer
│ │ │ │ └── MKScrollViewer.cs
│ │ │ ├── Slider
│ │ │ │ └── MKSlider.cs
│ │ │ ├── StepBar
│ │ │ │ ├── MKStepBar.cs
│ │ │ │ └── MKStepBarItem.cs
│ │ │ ├── Switch
│ │ │ │ └── MKSwitch.cs
│ │ │ ├── Tag
│ │ │ │ ├── MKTag.cs
│ │ │ │ └── MKTagBox.cs
│ │ │ ├── TileView
│ │ │ │ ├── MKTilePanel.cs
│ │ │ │ └── MKTileView.cs
│ │ │ ├── TimePicker
│ │ │ │ └── MKTimePicker.cs
│ │ │ ├── TreeView
│ │ │ │ └── MKTreeView.cs
│ │ │ └── Window
│ │ │ └── MKWindow.cs
│ │ ├── Converts
│ │ │ ├── BorderGapMaskConverter.cs
│ │ │ ├── CircleArcConverter.cs
│ │ │ ├── ColorToArgbConverter.cs
│ │ │ └── TrimmedTextBlockConverter.cs
│ │ ├── DLL
│ │ │ ├── CalcBinding.dll
│ │ │ └── DynamicExpresso.Core.dll
│ │ ├── Enum
│ │ │ └── StepStatus.cs
│ │ ├── MKControl.csproj
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Resources
│ │ │ ├── BaseStyle.xaml
│ │ │ ├── FontAwesome.ttf
│ │ │ └── Styles
│ │ │ ├── MKBadge.xaml
│ │ │ ├── MKButton.xaml
│ │ │ ├── MKButtonGroup.xaml
│ │ │ ├── MKCheckBox.xaml
│ │ │ ├── MKCircleProgressBar.xaml
│ │ │ ├── MKClearButton.xaml
│ │ │ ├── MKComboBox.xaml
│ │ │ ├── MKDashboard.xaml
│ │ │ ├── MKDivider.xaml
│ │ │ ├── MKGroupBox.xaml
│ │ │ ├── MKIconButton.xaml
│ │ │ ├── MKImageView.xaml
│ │ │ ├── MKListBox.xaml
│ │ │ ├── MKLoading.xaml
│ │ │ ├── MKMultiComboBox.xaml
│ │ │ ├── MKNumberBox.xaml
│ │ │ ├── MKPager.xaml
│ │ │ ├── MKPanel.xaml
│ │ │ ├── MKPasswordBox.xaml
│ │ │ ├── MKProgressBar.xaml
│ │ │ ├── MKRadioButton.xaml
│ │ │ ├── MKScrollViewer.xaml
│ │ │ ├── MKSlider.xaml
│ │ │ ├── MKStepBar.xaml
│ │ │ ├── MKSwitch.xaml
│ │ │ ├── MKTag.xaml
│ │ │ ├── MKTextArea.xaml
│ │ │ ├── MKTextBox.xaml
│ │ │ ├── MKTilePanel.xaml
│ │ │ ├── MKTimePicker.xaml
│ │ │ ├── MKTreeView.xaml
│ │ │ └── MKWindow.xaml
│ │ ├── Themes
│ │ │ └── Generic.xaml
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── CalcBinding.dll
│ │ │ │ ├── DynamicExpresso.Core.dll
│ │ │ │ ├── MKControl.dll
│ │ │ │ └── MKControl.pdb
│ │ │ └── Release
│ │ └── obj
│ │ └── Debug
│ │ ├── Controls
│ │ │ └── MessageBox
│ │ │ ├── MKMessageBoxWindow.baml
│ │ │ ├── MKMessageBoxWindow.g.cs
│ │ │ └── MKMessageBoxWindow.g.i.cs
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── GeneratedInternalTypeHelper.g.cs
│ │ ├── GeneratedInternalTypeHelper.g.i.cs
│ │ ├── MKControl.Properties.Resources.resources
│ │ ├── MKControl.csproj.CopyComplete
│ │ ├── MKControl.csproj.CoreCompileInputs.cache
│ │ ├── MKControl.csproj.FileListAbsolute.txt
│ │ ├── MKControl.csproj.GenerateResource.cache
│ │ ├── MKControl.dll
│ │ ├── MKControl.g.resources
│ │ ├── MKControl.pdb
│ │ ├── MKControl_MarkupCompile.cache
│ │ ├── MKControl_MarkupCompile.i.cache
│ │ ├── MKControl_MarkupCompile.lref
│ │ ├── Resources
│ │ │ ├── BaseStyle.baml
│ │ │ ├── Styles
│ │ │ │ ├── MKBadge.baml
│ │ │ │ ├── MKButton.baml
│ │ │ │ ├── MKButtonGroup.baml
│ │ │ │ ├── MKCheckBox.baml
│ │ │ │ ├── MKCircleProgressBar.baml
│ │ │ │ ├── MKClearButton.baml
│ │ │ │ ├── MKComboBox.baml
│ │ │ │ ├── MKDashboard.baml
│ │ │ │ ├── MKDivider.baml
│ │ │ │ ├── MKGroupBox.baml
│ │ │ │ ├── MKIconButton.baml
│ │ │ │ ├── MKImageView.baml
│ │ │ │ ├── MKListBox.baml
│ │ │ │ ├── MKLoading.baml
│ │ │ │ ├── MKMultiComboBox.baml
│ │ │ │ ├── MKNumberBox.baml
│ │ │ │ ├── MKPager.baml
│ │ │ │ ├── MKPanel.baml
│ │ │ │ ├── MKPasswordBox.baml
│ │ │ │ ├── MKProgressBar.baml
│ │ │ │ ├── MKRadioButton.baml
│ │ │ │ ├── MKScrollViewer.baml
│ │ │ │ ├── MKSlider.baml
│ │ │ │ ├── MKStepBar.baml
│ │ │ │ ├── MKSwitch.baml
│ │ │ │ ├── MKTag.baml
│ │ │ │ ├── MKTextArea.baml
│ │ │ │ ├── MKTextBox.baml
│ │ │ │ ├── MKTilePanel.baml
│ │ │ │ ├── MKTimePicker.baml
│ │ │ │ ├── MKTreeView.baml
│ │ │ │ └── MKWindow.baml
│ │ │ └── Themes
│ │ ├── TempPE
│ │ └── Themes
│ │ └── Generic.baml
│ ├── MKControl.sln
│ └── MKControl_Demo
│ ├── App.config
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── Attach
│ │ └── PasswordBoxMonitor.cs
│ ├── ChartWindow.xaml
│ ├── ChartWindow.xaml.cs
│ ├── ControlWindow.xaml
│ ├── ControlWindow.xaml.cs
│ ├── Converts
│ │ └── DataGridColorConverter.cs
│ ├── DataGridWindow.xaml
│ ├── DataGridWindow.xaml.cs
│ ├── Home.xaml
│ ├── Home.xaml.cs
│ ├── LiveCharts.xaml
│ ├── LiveCharts.xaml.cs
│ ├── Login.xaml
│ ├── Login.xaml.cs
│ ├── MKControl_Demo.csproj
│ ├── MainWindow.xaml
│ ├── MainWindow.xaml.cs
│ ├── PlayBack.xaml
│ ├── PlayBack.xaml.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── RealVideo.xaml
│ ├── RealVideo.xaml.cs
│ ├── Resources
│ │ ├── GlobalStyle.xaml
│ │ └── Images
│ │ ├── Image1.png
│ │ ├── Image2.png
│ │ ├── Image3.png
│ │ ├── favicon.ico
│ │ ├── login.png
│ │ ├── login_back.jpg
│ │ ├── login_back2.jpg
│ │ └── no_img.gif
│ ├── Setting.xaml
│ ├── Setting.xaml.cs
│ ├── VisifireCharts.xaml
│ ├── VisifireCharts.xaml.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── CalcBinding.dll
│ │ │ ├── DynamicExpresso.Core.dll
│ │ │ ├── Lierda.WPFHelper.dll
│ │ │ ├── LiveCharts.Wpf.dll
│ │ │ ├── LiveCharts.dll
│ │ │ ├── MKControl.dll
│ │ │ ├── MKControl.pdb
│ │ │ ├── MKControl_Demo.exe
│ │ │ ├── MKControl_Demo.exe.config
│ │ │ ├── MKControl_Demo.pdb
│ │ │ └── WPFVisifire.Charts.dll
│ │ └── Release
│ ├── favicon.ico
│ └── obj
│ └── Debug
│ ├── App.baml
│ ├── App.g.cs
│ ├── App.g.i.cs
│ ├── ChartWindow.baml
│ ├── ChartWindow.g.cs
│ ├── ChartWindow.g.i.cs
│ ├── ControlWindow.baml
│ ├── ControlWindow.g.cs
│ ├── ControlWindow.g.i.cs
│ ├── DataGridWindow.baml
│ ├── DataGridWindow.g.cs
│ ├── DataGridWindow.g.i.cs
│ ├── DesignTimeResolveAssemblyReferences.cache
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── GeneratedInternalTypeHelper.g.cs
│ ├── GeneratedInternalTypeHelper.g.i.cs
│ ├── Home.baml
│ ├── Home.g.cs
│ ├── Home.g.i.cs
│ ├── LiveCharts.baml
│ ├── LiveCharts.g.cs
│ ├── LiveCharts.g.i.cs
│ ├── Login.baml
│ ├── Login.g.cs
│ ├── Login.g.i.cs
│ ├── MKControl_Demo.Properties.Resources.resources
│ ├── MKControl_Demo.csproj.AssemblyReference.cache
│ ├── MKControl_Demo.csproj.CopyComplete
│ ├── MKControl_Demo.csproj.CoreCompileInputs.cache
│ ├── MKControl_Demo.csproj.FileListAbsolute.txt
│ ├── MKControl_Demo.csproj.GenerateResource.cache
│ ├── MKControl_Demo.exe
│ ├── MKControl_Demo.g.resources
│ ├── MKControl_Demo.pdb
│ ├── MKControl_Demo_Content.g.i.cs
│ ├── MKControl_Demo_MarkupCompile.cache
│ ├── MKControl_Demo_MarkupCompile.i.cache
│ ├── MKControl_Demo_MarkupCompile.i.lref
│ ├── MKControl_Demo_MarkupCompile.lref
│ ├── MainWindow.baml
│ ├── MainWindow.g.cs
│ ├── MainWindow.g.i.cs
│ ├── PlayBack.baml
│ ├── PlayBack.g.cs
│ ├── PlayBack.g.i.cs
│ ├── RealVideo.baml
│ ├── RealVideo.g.cs
│ ├── RealVideo.g.i.cs
│ ├── Resources
│ │ └── GlobalStyle.baml
│ ├── Setting.baml
│ ├── Setting.g.cs
│ ├── Setting.g.i.cs
│ ├── TempPE
│ │ └── Properties.Resources.Designer.cs.dll
│ ├── VisifireCharts.baml
│ ├── VisifireCharts.g.cs
│ └── VisifireCharts.g.i.cs
└── wpf控件库实现了常用的WPF控件_MKControl.zip
65 directories, 266 files
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论