在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例Windows系统编程 → WPF实例UI模板,各种模板可直接引用使用(Panuon.WPF.UI-master

WPF实例UI模板,各种模板可直接引用使用(Panuon.WPF.UI-master

Windows系统编程

下载此实例
  • 开发语言:C#
  • 实例大小:1.01M
  • 下载次数:60
  • 浏览次数:702
  • 发布时间:2023-03-06
  • 实例类别:Windows系统编程
  • 发 布 人:OnePiece147
  • 文件格式:.zip
  • 所需积分:4
 相关标签: master ASTER wpf PF ST

实例介绍

【实例简介】WPF实例UI模板,各种模板可直接引用使用(Panuon.WPF.UI-master

【实例截图】

from clipboard

【核心代码】

.
├── Panuon.WPF.UI-master
│   ├── LICENSE
│   ├── Samples
│   │   ├── App.config
│   │   ├── App.xaml
│   │   ├── App.xaml.cs
│   │   ├── Attrbiutes
│   │   │   └── ExampleViewAttribute.cs
│   │   ├── Models
│   │   │   ├── ExampleItem.cs
│   │   │   └── FontItem.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Settings.Designer.cs
│   │   │   ├── Settings.settings
│   │   │   └── app.manifest
│   │   ├── Resources
│   │   │   ├── Logo.ico
│   │   │   ├── Logo.png
│   │   │   └── WebForms.png
│   │   ├── Samples.csproj
│   │   ├── Samples.sln
│   │   └── Views
│   │       ├── Examples
│   │       │   ├── FormView.xaml
│   │       │   ├── FormView.xaml.cs
│   │       │   ├── NeteaseMusicView.xaml
│   │       │   ├── NeteaseMusicView.xaml.cs
│   │       │   ├── ReportView.xaml
│   │       │   ├── ReportView.xaml.cs
│   │       │   ├── SignInView.xaml
│   │       │   ├── SignInView.xaml.cs
│   │       │   ├── VisualStudio2019View.xaml
│   │       │   └── VisualStudio2019View.xaml.cs
│   │       ├── FooView.xaml
│   │       ├── FooView.xaml.cs
│   │       ├── MainView.xaml
│   │       ├── MainView.xaml.cs
│   │       └── Tools
│   │           ├── IconFontView.xaml
│   │           └── IconFontView.xaml.cs
│   ├── SourceCode
│   │   ├── Core31
│   │   │   ├── Core31.sln
│   │   │   └── Panuon.WPF.UI
│   │   │       ├── Panuon.WPF.UI.csproj
│   │   │       ├── Resources
│   │   │       │   ├── Fonts
│   │   │       │   │   └── PanuonIcon.ttf
│   │   │       │   ├── PanuonIcon.ttf
│   │   │       │   └── dropper.cur
│   │   │       └── Themes
│   │   │           └── Generic.xaml
│   │   ├── Net45
│   │   │   ├── Net45.sln
│   │   │   └── Panuon.WPF.UI
│   │   │       ├── Panuon.WPF.UI.csproj
│   │   │       ├── Resources
│   │   │       │   ├── Fonts
│   │   │       │   │   └── PanuonIcon.ttf
│   │   │       │   ├── PanuonIcon.ttf
│   │   │       │   └── dropper.cur
│   │   │       └── Themes
│   │   │           └── Generic.xaml
│   │   ├── Net462
│   │   │   ├── Net462.sln
│   │   │   └── Panuon.WPF.UI
│   │   │       ├── Panuon.WPF.UI.csproj
│   │   │       ├── Resources
│   │   │       │   ├── Fonts
│   │   │       │   │   └── PanuonIcon.ttf
│   │   │       │   ├── PanuonIcon.ttf
│   │   │       │   └── dropper.cur
│   │   │       └── Themes
│   │   │           └── Generic.xaml
│   │   ├── Net472
│   │   │   ├── Net472.sln
│   │   │   └── Panuon.WPF.UI
│   │   │       ├── Panuon.WPF.UI.csproj
│   │   │       ├── Resources
│   │   │       │   ├── Fonts
│   │   │       │   │   └── PanuonIcon.ttf
│   │   │       │   ├── PanuonIcon.ttf
│   │   │       │   └── dropper.cur
│   │   │       └── Themes
│   │   │           └── Generic.xaml
│   │   ├── Net48
│   │   │   ├── Net48.sln
│   │   │   └── Panuon.WPF.UI
│   │   │       ├── Panuon.WPF.UI.csproj
│   │   │       ├── Resources
│   │   │       │   ├── Fonts
│   │   │       │   │   └── PanuonIcon.ttf
│   │   │       │   ├── PanuonIcon.ttf
│   │   │       │   └── dropper.cur
│   │   │       └── Themes
│   │   │           └── Generic.xaml
│   │   ├── Net5
│   │   │   ├── Net5.sln
│   │   │   └── Panuon.WPF.UI
│   │   │       ├── Panuon.WPF.UI.csproj
│   │   │       ├── Resources
│   │   │       │   ├── Fonts
│   │   │       │   │   └── PanuonIcon.ttf
│   │   │       │   ├── PanuonIcon.ttf
│   │   │       │   └── dropper.cur
│   │   │       └── Themes
│   │   │           └── Generic.xaml
│   │   ├── Net6
│   │   │   ├── Net6.sln
│   │   │   └── Panuon.WPF.UI
│   │   │       ├── Panuon.WPF.UI.csproj
│   │   │       ├── Resources
│   │   │       │   ├── Fonts
│   │   │       │   │   └── PanuonIcon.ttf
│   │   │       │   ├── PanuonIcon.ttf
│   │   │       │   └── dropper.cur
│   │   │       └── Themes
│   │   │           └── Generic.xaml
│   │   ├── Panuon.WPF.UI.sln
│   │   ├── References
│   │   │   ├── Core31
│   │   │   │   └── netcoreapp3.1
│   │   │   │       └── Panuon.WPF.dll
│   │   │   ├── Net45
│   │   │   │   └── Panuon.WPF.dll
│   │   │   ├── Net462
│   │   │   │   └── Panuon.WPF.dll
│   │   │   ├── Net472
│   │   │   │   └── Panuon.WPF.dll
│   │   │   ├── Net48
│   │   │   │   └── Panuon.WPF.dll
│   │   │   ├── Net5
│   │   │   │   └── net5.0-windows
│   │   │   │       └── Panuon.WPF.dll
│   │   │   └── Net6
│   │   │       └── net6.0-windows
│   │   │           └── Panuon.WPF.dll
│   │   └── SharedResources
│   │       ├── Panuon.WPF.UI
│   │       │   ├── Attributes
│   │       │   │   ├── ColumnBindingAttribute.cs
│   │       │   │   ├── ColumnCellAttribute.cs
│   │       │   │   ├── ColumnComboAttribute.cs
│   │       │   │   ├── ColumnDisplayIndexAttribute.cs
│   │       │   │   ├── ColumnHeaderAttribute.cs
│   │       │   │   ├── ColumnIgnoreAttribute.cs
│   │       │   │   ├── ColumnReorderAttribute.cs
│   │       │   │   ├── ColumnResizeAttribute.cs
│   │       │   │   ├── ColumnSortAttribute.cs
│   │       │   │   ├── ColumnTemplateAttribute.cs
│   │       │   │   └── ColumnWidthAttribute.cs
│   │       │   ├── Configurations
│   │       │   │   ├── DateTimeTimer.cs
│   │       │   │   ├── GlobalSetting.cs
│   │       │   │   ├── MessageBoxXSetting.cs
│   │       │   │   ├── NoticeBoxSetting.cs
│   │       │   │   └── PendingBoxSetting.cs
│   │       │   ├── Contracts
│   │       │   │   ├── INoticeHandler.cs
│   │       │   │   └── IPendingHandler.cs
│   │       │   ├── Control.xaml
│   │       │   ├── Controls
│   │       │   │   ├── AnimationStackPanel.cs
│   │       │   │   ├── Badge.cs
│   │       │   │   ├── Breadcrumb.cs
│   │       │   │   ├── BreadcrumbItem.cs
│   │       │   │   ├── CacheControl.cs
│   │       │   │   ├── CalendarX.cs
│   │       │   │   ├── CalendarXItem.cs
│   │       │   │   ├── Card.cs
│   │       │   │   ├── Carousel.cs
│   │       │   │   ├── CarouselPanel.cs
│   │       │   │   ├── ColorPicker.cs
│   │       │   │   ├── ColorSelector.cs
│   │       │   │   ├── ContentControlX.cs
│   │       │   │   ├── DateTimePicker.cs
│   │       │   │   ├── Drawer.cs
│   │       │   │   ├── DropDown.cs
│   │       │   │   ├── FormGroup.cs
│   │       │   │   ├── MultiComboBox.cs
│   │       │   │   ├── MultiComboBoxItem.cs
│   │       │   │   ├── NoticeBoxItem.cs
│   │       │   │   ├── Pagination.cs
│   │       │   │   ├── PaginationItem.cs
│   │       │   │   ├── PopupX.cs
│   │       │   │   ├── RingProgressBar.cs
│   │       │   │   ├── SearchBox.cs
│   │       │   │   ├── SearchBoxItem.cs
│   │       │   │   ├── SeparatorX.cs
│   │       │   │   ├── Spin.cs
│   │       │   │   ├── StateControl.cs
│   │       │   │   ├── StateItem.cs
│   │       │   │   ├── Switch.cs
│   │       │   │   ├── TagItem.cs
│   │       │   │   ├── ThumbFence.cs
│   │       │   │   ├── TimeSelector.cs
│   │       │   │   ├── TimeSelectorItem.cs
│   │       │   │   ├── TransformControl.cs
│   │       │   │   ├── UIElementHelper.cs
│   │       │   │   ├── WindowX.cs
│   │       │   │   └── ZoomViewer.cs
│   │       │   ├── Enums
│   │       │   │   ├── AnimationEase.cs
│   │       │   │   ├── ArrangeDirection.cs
│   │       │   │   ├── AuxiliaryButtonVisibility.cs
│   │       │   │   ├── CalendarXItemMode.cs
│   │       │   │   ├── CalendarXMode.cs
│   │       │   │   ├── CaptionButtons.cs
│   │       │   │   ├── CarouselAnimation.cs
│   │       │   │   ├── ClickEffect.cs
│   │       │   │   ├── ColorChannels.cs
│   │       │   │   ├── ColorEditors.cs
│   │       │   │   ├── ColorTextFormats.cs
│   │       │   │   ├── ComboKeys.cs
│   │       │   │   ├── ContentPlacement.cs
│   │       │   │   ├── DataGridSortArrowVisibility.cs
│   │       │   │   ├── DateTimePickerMode.cs
│   │       │   │   ├── DecorationVisibility.cs
│   │       │   │   ├── DrawerPlacement.cs
│   │       │   │   ├── GroupBoxHeaderVerticalAlignment.cs
│   │       │   │   ├── HighlightRule.cs
│   │       │   │   ├── IconPlacement.cs
│   │       │   │   ├── IndicatorPosition.cs
│   │       │   │   ├── InputLimits.cs
│   │       │   │   ├── ItemsControlRibbonLineVisibility.cs
│   │       │   │   ├── MessageBoxIcon.cs
│   │       │   │   ├── PopupXPlacement.cs
│   │       │   │   ├── ProgressDirection.cs
│   │       │   │   ├── RibbonLinePlacement.cs
│   │       │   │   ├── RulerLineVisiblity.cs
│   │       │   │   ├── ScrollBarPosition.cs
│   │       │   │   ├── ScrollButtonVisibility.cs
│   │       │   │   ├── SpinStyle.cs
│   │       │   │   ├── TabPanelAlignment.cs
│   │       │   │   ├── TimeSelectorMode.cs
│   │       │   │   ├── ToastPlacement.cs
│   │       │   │   ├── ToggleArrowPlacement.cs
│   │       │   │   ├── ValidateResult.cs
│   │       │   │   ├── WheelScrollingDirection.cs
│   │       │   │   └── WindowXHeaderAlignment.cs
│   │       │   ├── Events
│   │       │   │   ├── GeneratingPercentTextRoutedEventArgs.cs
│   │       │   │   ├── GeneratingPercentTextRoutedEventHandler.cs
│   │       │   │   ├── GeneratingValueTextRoutedEventArgs.cs
│   │       │   │   └── GeneratingValueTextRoutedEventHandler.cs
│   │       │   ├── Helpers
│   │       │   │   ├── AnimationHelper
│   │       │   │   │   ├── BrushAnimationHelper.cs
│   │       │   │   │   ├── ColorAnimationHelper.cs
│   │       │   │   │   ├── CornerRadiusAnimationHelper.cs
│   │       │   │   │   └── ThicknessAnimationHelper.cs
│   │       │   │   ├── ButtonHelper.cs
│   │       │   │   ├── CheckBoxHelper.cs
│   │       │   │   ├── ComboBoxHelper.cs
│   │       │   │   ├── ComboBoxItemHelper.cs
│   │       │   │   ├── ContextMenuHelper.cs
│   │       │   │   ├── DataGridHelper.cs
│   │       │   │   ├── DefaultButton.cs
│   │       │   │   ├── DropDownHelper.cs
│   │       │   │   ├── ExpanderHelper.cs
│   │       │   │   ├── GlobalSettings.cs
│   │       │   │   ├── GroupBoxHelper.cs
│   │       │   │   ├── IconHelper.cs
│   │       │   │   ├── LabelHelper.cs
│   │       │   │   ├── ListBoxHelper.cs
│   │       │   │   ├── ListBoxItemHelper.cs
│   │       │   │   ├── ListViewHelper.cs
│   │       │   │   ├── ListViewItemHelper.cs
│   │       │   │   ├── MenuHelper.cs
│   │       │   │   ├── MenuItemHelper.cs
│   │       │   │   ├── MessageBoxX.cs
│   │       │   │   ├── MessageBoxXSettings.cs
│   │       │   │   ├── NoticeBox.cs
│   │       │   │   ├── NoticeBoxSettings.cs
│   │       │   │   ├── PasswordBoxHelper.cs
│   │       │   │   ├── PendingBox.cs
│   │       │   │   ├── PendingBoxSettings.cs
│   │       │   │   ├── ProgressBarHelper.cs
│   │       │   │   ├── RadioButtonHelper.cs
│   │       │   │   ├── RepeatButtonHelper.cs
│   │       │   │   ├── ScrollBarHelper.cs
│   │       │   │   ├── ScrollViewerHelper.cs
│   │       │   │   ├── ShadowHelper.cs
│   │       │   │   ├── SliderHelper.cs
│   │       │   │   ├── TabControlHelper.cs
│   │       │   │   ├── TabItemHelper.cs
│   │       │   │   ├── TextBlockHelper.cs
│   │       │   │   ├── TextBoxHelper.cs
│   │       │   │   ├── ThumbHelper.cs
│   │       │   │   ├── ToggleButtonHelper.cs
│   │       │   │   ├── ToolTipHelper.cs
│   │       │   │   ├── Tools.cs
│   │       │   │   ├── TreeViewHelper.cs
│   │       │   │   ├── TreeViewItemHelper.cs
│   │       │   │   ├── WindowXCaption.cs
│   │       │   │   └── WindowXModalDialog.cs
│   │       │   ├── Models
│   │       │   │   └── WindowEffect
│   │       │   │       ├── AcrylicWindowXEffect.cs
│   │       │   │       ├── AeroWindowXEffect.cs
│   │       │   │       └── WindowXEffect.cs
│   │       │   ├── Panuon.WPF.UI.projitems
│   │       │   ├── Panuon.WPF.UI.shproj
│   │       │   ├── Properties
│   │       │   │   └── AssemblyInfo.cs
│   │       │   ├── Resources
│   │       │   │   ├── ConverterKeys.cs
│   │       │   │   └── StyleKeys.cs
│   │       │   ├── Styles
│   │       │   │   ├── Badge.xaml
│   │       │   │   ├── Breadcrumb.xaml
│   │       │   │   ├── BreadcrumbItem.xaml
│   │       │   │   ├── Button.xaml
│   │       │   │   ├── CalendarX.xaml
│   │       │   │   ├── CalendarXItem.xaml
│   │       │   │   ├── Card.xaml
│   │       │   │   ├── Carousel.xaml
│   │       │   │   ├── CheckBox.xaml
│   │       │   │   ├── ColorPicker.xaml
│   │       │   │   ├── ColorSelector.xaml
│   │       │   │   ├── ComboBox.xaml
│   │       │   │   ├── ComboBoxItem.xaml
│   │       │   │   ├── ContentControlX.xaml
│   │       │   │   ├── ContextMenu.xaml
│   │       │   │   ├── DataGrid.xaml
│   │       │   │   ├── DateTimePicker.xaml
│   │       │   │   ├── Drawer.xaml
│   │       │   │   ├── DropDown.xaml
│   │       │   │   ├── Expander.xaml
│   │       │   │   ├── FormGroup.xaml
│   │       │   │   ├── GroupBox.xaml
│   │       │   │   ├── Label.xaml
│   │       │   │   ├── ListBox.xaml
│   │       │   │   ├── ListBoxItem.xaml
│   │       │   │   ├── ListView.xaml
│   │       │   │   ├── ListViewItem.xaml
│   │       │   │   ├── Menu.xaml
│   │       │   │   ├── MenuItem.xaml
│   │       │   │   ├── MultiComboBox.xaml
│   │       │   │   ├── MultiComboBoxItem.xaml
│   │       │   │   ├── NoticeBoxItem.xaml
│   │       │   │   ├── Pagination.xaml
│   │       │   │   ├── PaginationItem.xaml
│   │       │   │   ├── PasswordBox.xaml
│   │       │   │   ├── ProgressBar.xaml
│   │       │   │   ├── RadioButton.xaml
│   │       │   │   ├── RepeatButton.xaml
│   │       │   │   ├── RingProgressBar.xaml
│   │       │   │   ├── ScrollBar.xaml
│   │       │   │   ├── ScrollViewer.xaml
│   │       │   │   ├── SearchBox.xaml
│   │       │   │   ├── SearchBoxItem.xaml
│   │       │   │   ├── Slider.xaml
│   │       │   │   ├── Spin.xaml
│   │       │   │   ├── StateControl.xaml
│   │       │   │   ├── Switch.xaml
│   │       │   │   ├── TabControl.xaml
│   │       │   │   ├── TabItem.xaml
│   │       │   │   ├── TagItem.xaml
│   │       │   │   ├── TextBox.xaml
│   │       │   │   ├── Thumb.xaml
│   │       │   │   ├── ThumbFence.xaml
│   │       │   │   ├── TimeSelector.xaml
│   │       │   │   ├── TimeSelectorItem.xaml
│   │       │   │   ├── ToggleButton.xaml
│   │       │   │   ├── ToolTip.xaml
│   │       │   │   ├── TransformControl.xaml
│   │       │   │   ├── TreeView.xaml
│   │       │   │   ├── TreeViewItem.xaml
│   │       │   │   └── ZoomViewer.xaml
│   │       │   └── Themes
│   │       │       └── Generic.Core.xaml
│   │       └── Panuon.WPF.UI.Internal
│   │           ├── Controls
│   │           │   ├── CalendarXItemPresenter.cs
│   │           │   ├── ClippingBorder.cs
│   │           │   ├── IconPresenter.cs
│   │           │   ├── InternalItemsControl.cs
│   │           │   ├── InternalSpin.cs
│   │           │   ├── MessageBoxXWindow.cs
│   │           │   ├── NoticeBoxWindow.cs
│   │           │   ├── PendingBoxWindow.cs
│   │           │   ├── ScrollableControl.cs
│   │           │   └── TimeSelectorItemPresenter.cs
│   │           ├── Converters
│   │           │   ├── Arc2Converter.cs
│   │           │   ├── ArcConverter.cs
│   │           │   ├── BoolOrConverter.cs
│   │           │   ├── BrushOpacityConverter.cs
│   │           │   ├── BrushToColorConverter.cs
│   │           │   ├── CheckBoxCheckPathConverter.cs
│   │           │   ├── CheckBoxGlyphPathStrokeConverter.cs
│   │           │   ├── ColorSelectorOpacitySliderBackgroundConverter.cs
│   │           │   ├── ColorSelectorThumbFenceBackgroundConverter.cs
│   │           │   ├── ColorToBrushConverter.cs
│   │           │   ├── ComboBoxDropDownHorizontalOffsetConverter.cs
│   │           │   ├── ComboBoxDropDownMarginConverter.cs
│   │           │   ├── ComboBoxDropDownVerticalOffsetConverter.cs
│   │           │   ├── ContextMenuDropDownMarginConverter.cs
│   │           │   ├── DataGridSelectionUnitIsNotFullRowConverter.cs
│   │           │   ├── DisplayMemberPathPropertyValueConverter.cs
│   │           │   ├── DoubleDivideByConverter.cs
│   │           │   ├── DoubleEqualsConverter.cs
│   │           │   ├── DoubleHalfToCornerRadiusConverter.cs
│   │           │   ├── DoubleIsConverter.cs
│   │           │   ├── DoubleMinusConverter.cs
│   │           │   ├── DoubleMultiplyByConverter.cs
│   │           │   ├── DoubleMultiplyByMultiConverter.cs
│   │           │   ├── DoublePlusConverter.cs
│   │           │   ├── DoublePowConverter.cs
│   │           │   ├── DoubleToCornerRadiusConverter.cs
│   │           │   ├── DoubleToGridLengthConverter.cs
│   │           │   ├── DoubleToThicknessConverter.cs
│   │           │   ├── DrawerBorderMarginConverter.cs
│   │           │   ├── DrawerContentMarginConverter.cs
│   │           │   ├── DropDownMarginConverter.cs
│   │           │   ├── DropDownMinWidthConverter.cs
│   │           │   ├── DropDownOffsetConverter.cs
│   │           │   ├── DropShadowEffectWithDepthConverter.cs
│   │           │   ├── FalseToCollapseConverter.cs
│   │           │   ├── FalseToHiddenConverter.cs
│   │           │   ├── FontSizeMinusConverter.cs
│   │           │   ├── GetEnumDescriptionConverter.cs
│   │           │   ├── GetTypeConverter.cs
│   │           │   ├── IntDivideByConverter.cs
│   │           │   ├── IntMinusConverter.cs
│   │           │   ├── IntMultiplyByConverter.cs
│   │           │   ├── IntPlusConverter.cs
│   │           │   ├── IsAllEqualConverter.cs
│   │           │   ├── IsEnumContainsInSpecificValueConverter.cs
│   │           │   ├── IsIEnumerableHasItemsConverter.cs
│   │           │   ├── IsItemSeparatorShallVisibleControlConverter.cs
│   │           │   ├── IsLastItemInItemsControlConverter.cs
│   │           │   ├── IsNonnullConverter.cs
│   │           │   ├── IsNullConverter.cs
│   │           │   ├── IsStringEqualConverter.cs
│   │           │   ├── IsStringNonnullAndNotEmptyConverter.cs
│   │           │   ├── IsStringNullOrEmptyConverter.cs
│   │           │   ├── IsStringUnequalConverter.cs
│   │           │   ├── IsTypeConverter.cs
│   │           │   ├── LightenSolidColorBrushConverter.cs
│   │           │   ├── NonnullToCollapseConverter.cs
│   │           │   ├── NonnullToHiddenConverter.cs
│   │           │   ├── NullToCollapseConverter.cs
│   │           │   ├── NullToHiddenConverter.cs
│   │           │   ├── OppositeBrushConverter.cs
│   │           │   ├── OppositeColorConverter.cs
│   │           │   ├── ProgressBarBorderClipConverter.cs
│   │           │   ├── ProgressBarIndeterminateMarginConverter.cs
│   │           │   ├── ProgressBarTextForegroundConverter.cs
│   │           │   ├── ScrollableControlScrollButtonVisibilityConverter.cs
│   │           │   ├── SliderBorderClipConverter.cs
│   │           │   ├── SliderTextLeftConverter.cs
│   │           │   ├── SliderTextTopConverter.cs
│   │           │   ├── SpinClassicRenderTransformOriginConverter.cs
│   │           │   ├── StringNonnullAndNotEmptyToCollapseConverter.cs
│   │           │   ├── StringNonnullAndNotEmptyToHiddenConverter.cs
│   │           │   ├── StringNullOrEmptyToCollapseConverter.cs
│   │           │   ├── StringNullOrEmptyToHiddenConverter.cs
│   │           │   ├── SwitchToggleMarginConverter.cs
│   │           │   ├── TabPanelMaxHeightConverter.cs
│   │           │   ├── TabPanelMaxWidthConverter.cs
│   │           │   ├── TransparentColorToBrushConverter.cs
│   │           │   ├── TreeViewInternalPaddingConverter.cs
│   │           │   ├── TreeViewItemHorizontalSeparatorMarginConverter.cs
│   │           │   ├── TreeViewItemHorizontalSeparatorWidthConverter.cs
│   │           │   ├── TreeViewItemInternalPaddingConverter.cs
│   │           │   ├── TreeViewItemVerticalSeparatorMarginConverter.cs
│   │           │   ├── TrueToCollapseConverter.cs
│   │           │   ├── TrueToFalseConverter.cs
│   │           │   ├── TrueToHiddenConverter.cs
│   │           │   ├── WindowXCaptionDataContextConverter.cs
│   │           │   └── ZoomViewerViewboxScaleConverter.cs
│   │           ├── Events
│   │           │   ├── FormGroupCollectSizeEventArgs.cs
│   │           │   ├── FormGroupCollectSizeEventHandler.cs
│   │           │   ├── FormGroupSizeDeterminedEventArgs.cs
│   │           │   └── FormGroupSizeDeterminedEventHandler.cs
│   │           ├── Helpers
│   │           │   └── VisualStateHelper.cs
│   │           ├── Implements
│   │           │   ├── NoticeHandlerImpl.cs
│   │           │   └── PendingHandlerImpl.cs
│   │           ├── Models
│   │           │   └── MessageBoxContent.cs
│   │           ├── Panuon.WPF.UI.Internal.projitems
│   │           ├── Panuon.WPF.UI.Internal.shproj
│   │           ├── Resources
│   │           │   ├── ConverterKeys.cs
│   │           │   ├── Converters.xaml
│   │           │   ├── StyleKeys.cs
│   │           │   └── TemplateKeys.cs
│   │           ├── Styles
│   │           │   ├── BadgeStyle.xaml
│   │           │   ├── BreadcrumbItemStyle.xaml
│   │           │   ├── BreadcrumbStyle.xaml
│   │           │   ├── ButtonStyle.xaml
│   │           │   ├── CalendarXItemStyle.xaml
│   │           │   ├── CalendarXStyle.xaml
│   │           │   ├── CardStyle.xaml
│   │           │   ├── CarouselStyle.xaml
│   │           │   ├── CheckBoxStyle.xaml
│   │           │   ├── ColorPickerStyle.xaml
│   │           │   ├── ColorSelectorStyle.xaml
│   │           │   ├── ComboBoxItemStyle.xaml
│   │           │   ├── ComboBoxStyle.xaml
│   │           │   ├── ContentControlXStyle.xaml
│   │           │   ├── ContextMenuStyle.xaml
│   │           │   ├── DataGridStyle.xaml
│   │           │   ├── DateTimePickerStyle.xaml
│   │           │   ├── DrawerStyle.xaml
│   │           │   ├── DropDownStyle.xaml
│   │           │   ├── ExpanderStyle.xaml
│   │           │   ├── FormGroupStyle.xaml
│   │           │   ├── GroupBoxStyle.xaml
│   │           │   ├── InternalSpinStyle.xaml
│   │           │   ├── LabelStyle.xaml
│   │           │   ├── ListBoxItemStyle.xaml
│   │           │   ├── ListBoxStyle.xaml
│   │           │   ├── ListViewItemStyle.xaml
│   │           │   ├── ListViewStyle.xaml
│   │           │   ├── MenuItemStyle.xaml
│   │           │   ├── MenuStyle.xaml
│   │           │   ├── MessageBoxXStyle.xaml
│   │           │   ├── MultiComboBoxItemStyle.xaml
│   │           │   ├── MultiComboBoxStyle.xaml
│   │           │   ├── NoticeBoxItemStyle.xaml
│   │           │   ├── NoticeBoxStyle.xaml
│   │           │   ├── PaginationItemStyle.xaml
│   │           │   ├── PaginationStyle.xaml
│   │           │   ├── PasswordBoxStyle.xaml
│   │           │   ├── PendingBoxStyle.xaml
│   │           │   ├── ProgressBarStyle.xaml
│   │           │   ├── RadioButtonStyle.xaml
│   │           │   ├── RepeatButtonStyle.xaml
│   │           │   ├── RingProgressBarStyle.xaml
│   │           │   ├── ScrollBarStyle.xaml
│   │           │   ├── ScrollViewerStyle.xaml
│   │           │   ├── ScrollableControlStyle.xaml
│   │           │   ├── SearchBoxItemStyle.xaml
│   │           │   ├── SearchBoxStyle.xaml
│   │           │   ├── SliderStyle.xaml
│   │           │   ├── SpinStyle.xaml
│   │           │   ├── StateControlStyle.xaml
│   │           │   ├── SwitchStyle.xaml
│   │           │   ├── TabControlStyle.xaml
│   │           │   ├── TabItemStyle.xaml
│   │           │   ├── TagItemStyle.xaml
│   │           │   ├── TextBoxStyle.xaml
│   │           │   ├── ThumbFenceStyle.xaml
│   │           │   ├── ThumbStyle.xaml
│   │           │   ├── TimeSelectorItemStyle.xaml
│   │           │   ├── TimeSelectorStyle.xaml
│   │           │   ├── ToggleButtonStyle.xaml
│   │           │   ├── ToolTipStyle.xaml
│   │           │   ├── TransformControlStyle.xaml
│   │           │   ├── TreeViewItemStyle.xaml
│   │           │   ├── TreeViewStyle.xaml
│   │           │   ├── WindowXStyle.xaml
│   │           │   └── ZoomViewerStyle.xaml
│   │           ├── TemplateSelectors
│   │           │   ├── IconPresenterContentTemplateSelector.cs
│   │           │   └── WatermarkTemplateSelector.cs
│   │           ├── Templates
│   │           │   ├── BadgeTemplate.xaml
│   │           │   ├── BreadcrumbItemTemplate.xaml
│   │           │   ├── BreadcrumbTemplate.xaml
│   │           │   ├── ButtonTemplate.xaml
│   │           │   ├── CalendarXItemTemplate.xaml
│   │           │   ├── CalendarXTemplate.xaml
│   │           │   ├── CardTemplate.xaml
│   │           │   ├── CarouselTemplate.xaml
│   │           │   ├── CheckBoxTemplate.xaml
│   │           │   ├── ColorPickerTemplate.xaml
│   │           │   ├── ColorSelectorTemplate.xaml
│   │           │   ├── ComboBoxItemTemplate.xaml
│   │           │   ├── ComboBoxTemplate.xaml
│   │           │   ├── ContentControlXTemplate.xaml
│   │           │   ├── ContextMenuItemTemplate.xaml
│   │           │   ├── ContextMenuTemplate.xaml
│   │           │   ├── DataGridTemplate.xaml
│   │           │   ├── DateTimePickerTemplate.xaml
│   │           │   ├── DrawerTemplate.xaml
│   │           │   ├── DropDownTemplate.xaml
│   │           │   ├── ExpanderTemplate.xaml
│   │           │   ├── FormGroupTemplate.xaml
│   │           │   ├── GroupBoxTemplate.xaml
│   │           │   ├── InternalSpinTemplate.xaml
│   │           │   ├── LabelTemplate.xaml
│   │           │   ├── ListBoxItemTemplate.xaml
│   │           │   ├── ListBoxTemplate.xaml
│   │           │   ├── ListViewItemTemplate.xaml
│   │           │   ├── ListViewTemplate.xaml
│   │           │   ├── MenuItemTemplate.xaml
│   │           │   ├── MenuTemplate.xaml
│   │           │   ├── MultiComboBoxItemTemplate.xaml
│   │           │   ├── MultiComboBoxTemplate.xaml
│   │           │   ├── NoticeBoxItemTemplate.xaml
│   │           │   ├── PaginationItemTemplate.xaml
│   │           │   ├── PaginationTemplate.xaml
│   │           │   ├── PasswordBoxTemplate.xaml
│   │           │   ├── ProgressBarTemplate.xaml
│   │           │   ├── RadioButtonTemplate.xaml
│   │           │   ├── RepeatButtonTemplate.xaml
│   │           │   ├── RingProgressBarTemplate.xaml
│   │           │   ├── ScrollBarTemplate.xaml
│   │           │   ├── ScrollViewerTemplate.xaml
│   │           │   ├── ScrollableControlTemplate.xaml
│   │           │   ├── SearchBoxItemTemplate.xaml
│   │           │   ├── SearchBoxTemplate.xaml
│   │           │   ├── SliderTemplate.xaml
│   │           │   ├── StateControlTemplate.xaml
│   │           │   ├── SwitchTemplate.xaml
│   │           │   ├── TabControlTemplate.xaml
│   │           │   ├── TabItemTemplate.xaml
│   │           │   ├── TagItemTemplate.xaml
│   │           │   ├── TextBoxTemplate.xaml
│   │           │   ├── ThumbFenceTemplate.xaml
│   │           │   ├── ThumbTemplate.xaml
│   │           │   ├── TimeSelectorItemTemplate.xaml
│   │           │   ├── TimeSelectorTemplate.xaml
│   │           │   ├── ToggleButtonTemplate.xaml
│   │           │   ├── ToolTipTemplate.xaml
│   │           │   ├── TransformControlTemplate.xaml
│   │           │   ├── TreeViewItemTemplate.xaml
│   │           │   ├── TreeViewTemplate.xaml
│   │           │   ├── WindowXTemplate.xaml
│   │           │   └── ZoomViewerTemplate.xaml
│   │           └── Utils
│   │               ├── AnimationUtil.cs
│   │               ├── BrushUtil.cs
│   │               ├── ColorUtil.cs
│   │               ├── CursorUtil.cs
│   │               ├── DrawingContextUtil.cs
│   │               ├── EnumUtils.cs
│   │               ├── FrameworkElementUtil.cs
│   │               ├── GeometryUtil.cs
│   │               ├── GridLengthUtil.cs
│   │               ├── LocalizationUtil.cs
│   │               ├── Win32Util.cs
│   │               ├── WindowChromeUtil.cs
│   │               └── XamlUtil.cs
│   ├── readme.md
│   └── readme.zh-CN.md
└── WPF实例UI模板,各种模板可直接引用使用(Panuon.WPF.UI-master_Panuon.WPF.UI-master.zip

84 directories, 562 files



标签: master ASTER wpf PF ST

实例下载地址

WPF实例UI模板,各种模板可直接引用使用(Panuon.WPF.UI-master

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警