基本信息
源码名称:C#wpf的layui模板可直接使用
源码大小:0.97M
文件格式:.zip
开发语言:C#
更新时间:2023-02-27
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 10 元 
   源码介绍
C#wpf的layui模板可直接使用

.
├── 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