实例介绍
【实例截图】
【核心代码】
.
├── C#wpf的layui模板可直接使用_Layui-WPF-main.zip
└── Layui-WPF-main
├── README.md
└── src
└── LayuiPack
├── Core
│ └── Layui.Core
│ ├── AppHelper
│ │ ├── DownloadFileInfo.cs
│ │ ├── FileHelper.cs
│ │ └── NetworkHelper.cs
│ ├── Base
│ │ └── LayuiViewModelBase.cs
│ ├── Layui.Core.csproj
│ ├── Log
│ │ ├── ILayLogger.cs
│ │ └── LayLogger.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── SystemResource.cs
│ └── packages.config
├── LayuiApp
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── Layui.png
│ ├── LayuiApp.csproj
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── ViewModels
│ │ └── MainWindowViewModel.cs
│ ├── Views
│ │ ├── DialogWindowBase.xaml
│ │ ├── DialogWindowBase.xaml.cs
│ │ ├── MainWindow.xaml
│ │ └── MainWindow.xaml.cs
│ └── app.config
├── LayuiAutoUpdateTool
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── LayuiAutoUpdateTool.csproj
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── ViewModels
│ │ └── MainWindowViewModel.cs
│ ├── Views
│ │ ├── MainWindow.xaml
│ │ └── MainWindow.xaml.cs
│ └── app.config
├── LayuiPack.sln
├── LayuiTemplate
│ ├── Controls
│ │ ├── Badge
│ │ │ └── LayBadge.cs
│ │ ├── Button
│ │ │ └── LayButton.cs
│ │ ├── Canvas
│ │ │ └── LaySliderCanvas.cs
│ │ ├── Carousel
│ │ │ ├── LayCarouselItem.cs
│ │ │ ├── LayGradientCarousel.cs
│ │ │ └── LaySlideCarousel.cs
│ │ ├── CheckBox
│ │ │ └── LayCheckBox.cs
│ │ ├── ComboBox
│ │ │ ├── LayComboBox.cs
│ │ │ └── LayComboBoxItem.cs
│ │ ├── DataGrid
│ │ │ └── LayDataGrid.cs
│ │ ├── DatePicker
│ │ │ └── LayDatePicker.cs
│ │ ├── DateTimePicker
│ │ │ └── LayDateTimePicker.cs
│ │ ├── DialogHost
│ │ │ └── LayDialogHost.cs
│ │ ├── DrawerHost
│ │ │ ├── LayDrawerHost.cs
│ │ │ └── LayDrawerItem.cs
│ │ ├── DropDown
│ │ │ └── LayDropDown.cs
│ │ ├── EditText
│ │ │ └── LayEditText.cs
│ │ ├── Expander
│ │ │ ├── LayExpander.cs
│ │ │ ├── LayNavExpander.cs
│ │ │ └── LayNavExpanderPanel.cs
│ │ ├── GroupBox
│ │ │ └── LayGroupBox.cs
│ │ ├── Image
│ │ │ ├── LayGifImage.cs
│ │ │ └── LaySVGImage.cs
│ │ ├── Keyboard
│ │ │ └── LayKeyboard.cs
│ │ ├── Legend
│ │ │ └── LayLegend.cs
│ │ ├── ListBox
│ │ │ ├── LayListBox.cs
│ │ │ └── LayListBoxItem.cs
│ │ ├── Loading
│ │ │ └── LayLoading.cs
│ │ ├── Menu
│ │ │ └── LayMenu.cs
│ │ ├── MenuItem
│ │ │ └── LayMenuItem.cs
│ │ ├── Message
│ │ │ ├── LayMessageControl.cs
│ │ │ └── LayMessageHost.cs
│ │ ├── NumericUpDown
│ │ │ └── LayNumericUpDown.cs
│ │ ├── Pagination
│ │ │ └── LayPagination.cs
│ │ ├── Panel
│ │ │ └── LayCard.cs
│ │ ├── Password
│ │ │ └── LayPasswordBox.cs
│ │ ├── PopupBox
│ │ │ └── LayPopupBox.cs
│ │ ├── ProgressBar
│ │ │ └── LayProgressBar.cs
│ │ ├── RadioButton
│ │ │ └── LayRadioButton.cs
│ │ ├── RichTextBox
│ │ │ └── LayRichTextBox.cs
│ │ ├── Slider
│ │ │ └── LaySlider.cs
│ │ ├── Switch
│ │ │ └── LaySwitch.cs
│ │ ├── TabControl
│ │ │ └── LayTabControl.cs
│ │ ├── TabItem
│ │ │ └── LayTabItem.cs
│ │ ├── TextBox
│ │ │ ├── LayAutoCompleteTextBox.cs
│ │ │ └── LayTextBox.cs
│ │ ├── TimePicker
│ │ │ └── LayTimePicker.cs
│ │ ├── Timeline
│ │ │ ├── LayTimelineItem.cs
│ │ │ └── LayTimelinePanel.cs
│ │ ├── Timer
│ │ │ └── LayTimer.cs
│ │ ├── ToggleButton
│ │ │ └── LayToggleButton.cs
│ │ ├── ToolTip
│ │ │ └── LayToolTip.cs
│ │ ├── Transitions
│ │ │ └── LayTransition.cs
│ │ ├── TreeView
│ │ │ └── LayTreeView.cs
│ │ ├── TreeViewItem
│ │ │ └── LayTreeViewItem.cs
│ │ └── Window
│ │ └── LayWindow.cs
│ ├── Converters
│ │ ├── Base
│ │ │ ├── ElementAutoNumberConvert.cs
│ │ │ ├── ElementOffsetConverter.cs
│ │ │ └── MedianConvert.cs
│ │ ├── DrawerHost
│ │ │ └── DrawerHostOffsetConverter.cs
│ │ ├── Switch
│ │ │ └── SwitchWidthConverter.cs
│ │ └── ToolTip
│ │ └── ToolTipOffsetConverter.cs
│ ├── Dialog
│ │ └── Interface
│ │ └── ILayDialog.cs
│ ├── Enum
│ │ ├── Badge
│ │ │ └── BadgeStyle.cs
│ │ ├── Base
│ │ │ └── LayAnimation.cs
│ │ ├── Button
│ │ │ └── ButtonStyle.cs
│ │ ├── Carousel
│ │ │ └── CarouselArrow.cs
│ │ ├── CheckBox
│ │ │ └── CheckBoxStyle.cs
│ │ ├── Dialog
│ │ │ └── ButtonResult.cs
│ │ ├── DrawerHost
│ │ │ └── DrawerHostStyle.cs
│ │ ├── GroupBox
│ │ │ └── GroupBoxStyle.cs
│ │ ├── Legend
│ │ │ └── LegendStyle.cs
│ │ ├── Loading
│ │ │ └── LoadingStyle.cs
│ │ ├── Message
│ │ │ └── MessageType.cs
│ │ ├── Slider
│ │ │ └── SliderTipsPosition.cs
│ │ ├── TabControl
│ │ │ └── TabControlStyle.cs
│ │ ├── TextBox
│ │ │ └── InputType.cs
│ │ ├── TooplTip
│ │ │ └── PlacementStyle.cs
│ │ └── Transitions
│ │ └── AnimationType.cs
│ ├── Event
│ │ └── LayFunctionEventArgs.cs
│ ├── Extend
│ │ ├── Animation
│ │ │ └── LayAnimationsHelper.cs
│ │ ├── Base
│ │ │ ├── LayBindingProperty.cs
│ │ │ └── LayControlsBaseHelper.cs
│ │ ├── DataGrid
│ │ │ └── LayDataGridHelper.cs
│ │ ├── DatePicker
│ │ │ └── LayDatePickerHelper.cs
│ │ ├── Image
│ │ │ └── LayImageHelper.cs
│ │ ├── ItemsControl
│ │ │ └── LayItemsControlHelper.cs
│ │ └── TextBox
│ │ └── LayTextBoxHelper.cs
│ ├── Fonts
│ │ └── fontawesome-webfont.ttf
│ ├── Global
│ │ ├── Dialog
│ │ │ ├── Interface
│ │ │ │ ├── ILayDialogAware.cs
│ │ │ │ ├── ILayDialogParameter.cs
│ │ │ │ ├── ILayDialogResult.cs
│ │ │ │ ├── ILayDialogUserControlWindow.cs
│ │ │ │ ├── ILayDialogUserControlWindowExtensions.cs
│ │ │ │ ├── ILayDialogWindow.cs
│ │ │ │ ├── ILayDialogWindowAware.cs
│ │ │ │ └── ILayDialogWindowExtensions.cs
│ │ │ ├── LayDialog.cs
│ │ │ ├── LayDialogParameter.cs
│ │ │ ├── LayDialogResult.cs
│ │ │ ├── LayDialogUserControlWindow.cs
│ │ │ └── LayParametersExtensions.cs
│ │ ├── Message
│ │ │ └── LayMessage.cs
│ │ └── Notification
│ │ └── LayNotification.cs
│ ├── LayuiTemplate.csproj
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Style
│ │ └── Default
│ │ ├── BadgeStyle.xaml
│ │ ├── ButtonStyle.xaml
│ │ ├── CardStyle.xaml
│ │ ├── CarouselItemStyle.xaml
│ │ ├── CarouselStyle.xaml
│ │ ├── CheckBoxStyle.xaml
│ │ ├── ColorStyle.xaml
│ │ ├── ComboBoxItemStyle.xaml
│ │ ├── ComboBoxStyle.xaml
│ │ ├── ControlBaseStyle.xaml
│ │ ├── DataGridStyle.xaml
│ │ ├── DatePickerStyle.xaml
│ │ ├── DateTimePickerStyle.xaml
│ │ ├── DialogStyle.xaml
│ │ ├── DrawerHostStyle.xaml
│ │ ├── DrawerItemStyle.xaml
│ │ ├── EditTextStyle.xaml
│ │ ├── ExpanderStyle.xaml
│ │ ├── FontsStyle.xaml
│ │ ├── GifImageStyle.xaml
│ │ ├── GroupBoxStyle.xaml
│ │ ├── KeyboardStyle.xaml
│ │ ├── LegendStyle.xaml
│ │ ├── ListBoxStyle.xaml
│ │ ├── LoadingStyle.xaml
│ │ ├── MenuItemStyle.xaml
│ │ ├── MenuStyle.xaml
│ │ ├── MessageStyle.xaml
│ │ ├── NumericUpDownStyle.xaml
│ │ ├── PaginationStyle.xaml
│ │ ├── PanelStyle.xaml
│ │ ├── PasswordBoxStyle.xaml
│ │ ├── PathDataStyle.xaml
│ │ ├── PopupBoxStyle.xaml
│ │ ├── ProgressBarStyle.xaml
│ │ ├── RadioButtonStyle.xaml
│ │ ├── RichTextBoxStyle.xaml
│ │ ├── ScrollViewer.xaml
│ │ ├── SliderStyle.xaml
│ │ ├── SwitchStyle.xaml
│ │ ├── TabControlStyle.xaml
│ │ ├── TabItemStyle.xaml
│ │ ├── TextBoxStyle.xaml
│ │ ├── TimePickerStyle.xaml
│ │ ├── TimelineItemStyle.xaml
│ │ ├── TimelineStyle.xaml
│ │ ├── TimerStyle.xaml
│ │ ├── ToggleButtonStyle.xaml
│ │ ├── ToolTipStyle.xaml
│ │ ├── TransitionControlStyle.xaml
│ │ ├── TreeViewItemStyle.xaml
│ │ ├── TreeViewStyle.xaml
│ │ └── WindowStyle.xaml
│ ├── Themes
│ │ └── Default.xaml
│ └── Tools
│ ├── LayKeyboardKeyHelper.cs
│ ├── LayResourceHelper.cs
│ ├── LayVisualTreeHelper.cs
│ └── LayWebBrowserHelper.cs
└── Models
├── LayuiComponentExample
│ ├── LayuiComponentExample.csproj
│ ├── LayuiComponentExampleModule.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── ViewModels
│ │ ├── AnimationCommandViewModel.cs
│ │ ├── BadgeViewModel.cs
│ │ ├── CarouselViewModel.cs
│ │ ├── DataGridViewModel.cs
│ │ ├── DateTimeViewModel.cs
│ │ ├── DialogAlertViewModel.cs
│ │ ├── DialogMessageViewModel.cs
│ │ ├── DialogViewModel.cs
│ │ ├── DrawerViewModel.cs
│ │ ├── LayDialogWindowTookenViewModel.cs
│ │ ├── MessageViewModel.cs
│ │ ├── PaginationViewModel.cs
│ │ ├── PopupBoxViewModel.cs
│ │ ├── SliderViewModel.cs
│ │ ├── ToolTipViewModel.cs
│ │ └── UploadViewModel.cs
│ └── Views
│ ├── AnimationCommand.xaml
│ ├── AnimationCommand.xaml.cs
│ ├── Badge.xaml
│ ├── Badge.xaml.cs
│ ├── Carousel.xaml
│ ├── Carousel.xaml.cs
│ ├── DataGrid.xaml
│ ├── DataGrid.xaml.cs
│ ├── DateTime.xaml
│ ├── DateTime.xaml.cs
│ ├── Dialog.xaml
│ ├── Dialog.xaml.cs
│ ├── DialogAlert.xaml
│ ├── DialogAlert.xaml.cs
│ ├── DialogMessageView.xaml
│ ├── DialogMessageView.xaml.cs
│ ├── Drawer.xaml
│ ├── Drawer.xaml.cs
│ ├── Message.xaml
│ ├── Message.xaml.cs
│ ├── Pagination.xaml
│ ├── Pagination.xaml.cs
│ ├── PopupBox.xaml
│ ├── PopupBox.xaml.cs
│ ├── Slider.xaml
│ ├── Slider.xaml.cs
│ ├── ToolTip.xaml
│ ├── ToolTip.xaml.cs
│ ├── Upload.xaml
│ └── Upload.xaml.cs
├── LayuiFundamentalElement
│ ├── Images
│ │ ├── GIF
│ │ │ └── v2-30156325f3b931600dc40e119d6a12cc_b.gif
│ │ └── SVG
│ │ └── 购物车空空如也.svg
│ ├── LayuiFundamentalElement.csproj
│ ├── LayuiFundamentalElementModule.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── ViewModels
│ │ ├── AuxiliaryElementViewModel.cs
│ │ ├── ButtonViewModel.cs
│ │ ├── ExpanderViewModel.cs
│ │ ├── FormViewModel.cs
│ │ ├── ImageViewModel.cs
│ │ ├── KeyboardViewModel.cs
│ │ ├── LoadingViewModel.cs
│ │ ├── MenuViewModel.cs
│ │ ├── PanelViewModel.cs
│ │ ├── ProgressBarViewModel.cs
│ │ ├── TabControlViewModel.cs
│ │ ├── TimelineViewModel.cs
│ │ ├── TransitionControlViewModel.cs
│ │ └── TreeViewModel.cs
│ └── Views
│ ├── AuxiliaryElement.xaml
│ ├── AuxiliaryElement.xaml.cs
│ ├── Button.xaml
│ ├── Button.xaml.cs
│ ├── Expander.xaml
│ ├── Expander.xaml.cs
│ ├── Form.xaml
│ ├── Form.xaml.cs
│ ├── Image.xaml
│ ├── Image.xaml.cs
│ ├── Keyboard.xaml
│ ├── Keyboard.xaml.cs
│ ├── Loading.xaml
│ ├── Loading.xaml.cs
│ ├── Menu.xaml
│ ├── Menu.xaml.cs
│ ├── Panel.xaml
│ ├── Panel.xaml.cs
│ ├── ProgressBar.xaml
│ ├── ProgressBar.xaml.cs
│ ├── TabControl.xaml
│ ├── TabControl.xaml.cs
│ ├── Timeline.xaml
│ ├── Timeline.xaml.cs
│ ├── TransitionControl.xaml
│ ├── TransitionControl.xaml.cs
│ ├── TreeView.xaml
│ └── TreeView.xaml.cs
└── LayuiHome
├── LayuiHome.csproj
├── LayuiHomeModule.cs
├── Models
│ └── MenuItemModel.cs
├── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── Selector
│ └── MenuItemDataTemplateSelector.cs
├── ViewModels
│ ├── HomeViewModel.cs
│ └── TestViewModel.cs
└── Views
├── Home.xaml
└── Home.xaml.cs
126 directories, 325 files
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论