NetBlog主题

WPF 全局Style样式使用
WPF

WPF 全局Style样式使用

159

1、新建一个资源词典ButtonStyle.xamlResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" !--Button 的全局默认样式-- Style TargetType…

WPF控件库MaterialDesignThemes使用
WPF

WPF控件库MaterialDesignThemes使用

273

MaterialDesignThemes开源地址 https://github.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit1、在Nuget里面安装MaterialDesignThemes2、在 App.xaml 中引入 MaterialDesign 主题资源Application x:Class="WpfApp1.App" xmlns="http://schemas.microso…

WPF 中,Button 点击触发事件源码实例
WPF

WPF 中,Button 点击触发事件源码实例

186

在 WPF 中,Button 点击触发事件有两种主流实现方式:一是传统的代码后置事件处理(适合简单场景),二是MVVM 模式的命令绑定(推荐,符合 WPF 设计原则,解耦 UI 与业务逻辑)。下面分别给出完整示例:方式一:传统代码后置事件处理(Click 事件)这种方式直接在 XAML 中绑定…

WPF页面基础布局源码实例
WPF

WPF页面基础布局源码实例

241

效果图Window x:Class="WpfApp1.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" …