WPF 基础控件之Window样式

WPF开发者QQ群: 340500857

       由于微信群人数太多入群请添加小编微信号

 yanjinhuawechatW_Feng_aiQ 邀请入群

 需备注WPF开发者 

  PS:有更好的方式欢迎推荐。

01

代码如下

一、创建 Window.cs继承System.Windows.Window代码如下。

      在WPF自定义类库时需要注意在创建自定义Window时 默认新建的资源文件会找不到Style导致Window打开会成为黑色窗体解决方案有两种如下:

1)通过Style的Key去资源字典找到并替换窗体元数据。

static T GetResourceKey<T>(string key){if (Application.Current.TryFindResource(key) is T resource){return resource;}return default;}

2)直接对自定义库下的Themes文件夹下Generic.xaml资源写自定义Window的样式即可。

using System;
using System.Runtime.InteropServices;
using System.Windows;
using System.Windows.Input;
using System.Windows.Interop;namespace WPFDevelopers.Minimal.Net45x
{public class Window : System.Windows.Window{public double TitleHeight{get { return (double)GetValue(TitleHeightProperty); }set { SetValue(TitleHeightProperty, value); }}public static readonly DependencyProperty TitleHeightProperty =DependencyProperty.Register("TitleHeight", typeof(double), typeof(Window), new PropertyMetadata(50d));static Window(){StyleProperty.OverrideMetadata(typeof(Window), new FrameworkPropertyMetadata(GetResourceKey<Style>("WPFDevelopersWindow")));}static T GetResourceKey<T>(string key){if (Application.Current.TryFindResource(key) is T resource){return resource;}return default;}public Window(){this.Loaded += Window_Loaded;CommandBindings.Add(new CommandBinding(SystemCommands.CloseWindowCommand, CloseWindow));CommandBindings.Add(new CommandBinding(SystemCommands.MaximizeWindowCommand, MaximizeWindow, CanResizeWindow));CommandBindings.Add(new CommandBinding(SystemCommands.MinimizeWindowCommand, MinimizeWindow, CanMinimizeWindow));CommandBindings.Add(new CommandBinding(SystemCommands.RestoreWindowCommand, RestoreWindow, CanResizeWindow));//CommandBindings.Add(new CommandBinding(SystemCommands.ShowSystemMenuCommand, ShowSystemMenu));}private void Window_Loaded(object sender, RoutedEventArgs e){hWnd = new WindowInteropHelper(this).Handle;HwndSource.FromHwnd(hWnd).AddHook(WindowProc);}protected override void OnContentRendered(EventArgs e){base.OnContentRendered(e);if (SizeToContent == SizeToContent.WidthAndHeight)InvalidateMeasure();}#region Window Commandsprivate void CanResizeWindow(object sender, CanExecuteRoutedEventArgs e){e.CanExecute = ResizeMode == ResizeMode.CanResize || ResizeMode == ResizeMode.CanResizeWithGrip;}private void CanMinimizeWindow(object sender, CanExecuteRoutedEventArgs e){e.CanExecute = ResizeMode != ResizeMode.NoResize;}private void CloseWindow(object sender, ExecutedRoutedEventArgs e){//Close();SystemCommands.CloseWindow(this);}private void MaximizeWindow(object sender, ExecutedRoutedEventArgs e){SystemCommands.MaximizeWindow(this);}private void MinimizeWindow(object sender, ExecutedRoutedEventArgs e){//SystemCommands.MinimizeWindow(this);SendMessage(hWnd, ApiCodes.WM_SYSCOMMAND, new IntPtr(ApiCodes.SC_MINIMIZE), IntPtr.Zero);}private void RestoreWindow(object sender, ExecutedRoutedEventArgs e){SystemCommands.RestoreWindow(this);}internal class ApiCodes{public const int SC_RESTORE = 0xF120;public const int SC_MINIMIZE = 0xF020;public const int WM_SYSCOMMAND = 0x0112;}private IntPtr hWnd;[DllImport("user32.dll")]public static extern int SendMessage(IntPtr hWnd, int wMsg, IntPtr wParam, IntPtr lParam);private IntPtr WindowProc(IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam, ref bool handled){if (msg == ApiCodes.WM_SYSCOMMAND){if (wParam.ToInt32() == ApiCodes.SC_MINIMIZE){WindowStyle = WindowStyle.SingleBorderWindow;WindowState = WindowState.Minimized;handled = true;}else if (wParam.ToInt32() == ApiCodes.SC_RESTORE){WindowState = WindowState.Normal;WindowStyle = WindowStyle.None;handled = true;}}return IntPtr.Zero;}private void ShowSystemMenu(object sender, ExecutedRoutedEventArgs e){var element = e.OriginalSource as FrameworkElement;if (element == null)return;var point = WindowState == WindowState.Maximized ? new Point(0, element.ActualHeight): new Point(Left + BorderThickness.Left, element.ActualHeight + Top + BorderThickness.Top);point = element.TransformToAncestor(this).Transform(point);SystemCommands.ShowSystemMenu(this, point);}#endregion}
}

二、创建资源字典Window.xaml。

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:wpfdev="clr-namespace:WPFDevelopers.Minimal.Net45x" ><Style x:Key="WindowButtonStyle" TargetType="{x:Type Button}"><Setter Property="Foreground" Value="{DynamicResource PrimaryTextSolidColorBrush}"/><Setter Property="Padding" Value="3"/><Setter Property="Margin" Value="0"/><Setter Property="MinWidth" Value="30"/><Setter Property="MinHeight" Value="28"/><Setter Property="BorderThickness" Value="1"/><Setter Property="Cursor" Value="Hand"/><Setter Property="Template"><Setter.Value><ControlTemplate TargetType="{x:Type Button}"><Grid Background="Transparent"><VisualStateManager.VisualStateGroups><VisualStateGroup x:Name="CommonStates"><VisualState x:Name="Normal"/><VisualState x:Name="MouseOver"><Storyboard><DoubleAnimation Duration="0" To="1" Storyboard.TargetProperty="(UIElement.Opacity)"Storyboard.TargetName="PART_ContentPresenter" /></Storyboard></VisualState><VisualState x:Name="Pressed"><Storyboard><DoubleAnimation Duration="0" To="1" Storyboard.TargetProperty="(UIElement.Opacity)" Storyboard.TargetName="PART_ContentPresenter" /></Storyboard></VisualState><VisualState x:Name="Disabled"><Storyboard><DoubleAnimation Duration="0" To="0.3" Storyboard.TargetProperty="(UIElement.Opacity)"Storyboard.TargetName="PART_ContentPresenter"/></Storyboard></VisualState></VisualStateGroup><VisualStateGroup x:Name="FocusStates"><VisualState x:Name="Focused"/><VisualState x:Name="Unfocused"/></VisualStateGroup></VisualStateManager.VisualStateGroups><Rectangle Fill="Transparent"/><ContentPresenter x:Name="PART_ContentPresenter" Opacity="0.7" HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" Margin="{TemplateBinding Padding}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}" Content="{TemplateBinding Content}" ContentTemplate="{TemplateBinding ContentTemplate}"/></Grid></ControlTemplate></Setter.Value></Setter></Style><Style x:Key="WPFDevelopersWindow" TargetType="{x:Type wpfdev:Window}" BasedOn="{x:Null}"><Setter Property="Foreground" Value="{DynamicResource PrimaryTextSolidColorBrush}" /><Setter Property="Background"  Value="{DynamicResource WhiteSolidColorBrush}" /><Setter Property="BorderBrush" Value="{DynamicResource PrimaryNormalSolidColorBrush}" /><Setter Property="BorderThickness"  Value="1" /><Setter Property="IsTabStop"  Value="False" /><Setter Property="ResizeMode" Value="CanResizeWithGrip" /><Setter Property="SnapsToDevicePixels" Value="True"/><Setter Property="UseLayoutRounding" Value="True" /><Setter Property="TextOptions.TextFormattingMode" Value="Ideal" /><Setter Property="WindowStyle"  Value="None" /><Setter Property="MaxHeight" Value="{x:Static SystemParameters.MaximizedPrimaryScreenHeight}"/><Setter Property="MaxWidth" Value="{x:Static SystemParameters.MaximizedPrimaryScreenWidth}"/><Setter Property="FontFamily" Value="{DynamicResource NormalFontFamily}" /><Setter Property="WindowChrome.WindowChrome"><Setter.Value><WindowChrome  GlassFrameThickness="0,0,0,1" UseAeroCaptionButtons="False"CaptionHeight="{Binding TitleHeight,RelativeSource={RelativeSource AncestorType=wpfdev:Window}}"/></Setter.Value></Setter><Setter Property="Template"><Setter.Value><ControlTemplate TargetType="{x:Type wpfdev:Window}"><Border BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}"SnapsToDevicePixels="True"><Grid Background="{TemplateBinding Background}"><Grid.RowDefinitions><RowDefinition Height="Auto" /><RowDefinition Height="*" /><RowDefinition Height="Auto" /></Grid.RowDefinitions><Grid Grid.Row="0" Height="{TemplateBinding TitleHeight}" Background="{TemplateBinding BorderBrush}"><Grid.ColumnDefinitions><ColumnDefinition Width="Auto" /><ColumnDefinition Width="*" /><ColumnDefinition Width="Auto" MinWidth="30"/></Grid.ColumnDefinitions><Image Source="{TemplateBinding Icon}" Stretch="Fill"VerticalAlignment="Center" HorizontalAlignment="Left" Width="30" Height="30" Margin="14,0,4,0"RenderOptions.BitmapScalingMode="HighQuality"/><TextBlock Text="{TemplateBinding Title}" x:Name="PART_Title"Foreground="{DynamicResource WhiteSolidColorBrush}" Grid.Column="1"VerticalAlignment="Center" FontSize="{DynamicResource TitleFontSize}"/><WrapPanel Grid.Column="2" WindowChrome.IsHitTestVisibleInChrome="True"><WrapPanel x:Name="PART_MinAndMax"><Button Name="PART_MinimizeButton"  IsTabStop="False"   Padding="0" Margin="0,6" Style="{StaticResource WindowButtonStyle}" ToolTip="Minimize"Command="SystemCommands.MinimizeWindowCommand"><Grid HorizontalAlignment="Center" VerticalAlignment="Center"><Rectangle x:Name="MinimizeGlyph"  Width="10"  Height="1"   Margin="0 7 0 0" VerticalAlignment="Bottom" Fill="{DynamicResource WhiteSolidColorBrush}" /></Grid></Button><Button Name="PART_MaximizeButton" IsTabStop="False"  Padding="0"Style="{StaticResource WindowButtonStyle}" Margin="0,6"ToolTip="Maximize"Command="SystemCommands.MaximizeWindowCommand"><Grid HorizontalAlignment="Center" VerticalAlignment="Center"><Path Width="10" Height="10"HorizontalAlignment="Center" VerticalAlignment="Center" Data="{DynamicResource PathMetroWindowMaximize}" Fill="{DynamicResource WhiteSolidColorBrush}"Stretch="Fill" UseLayoutRounding="False" /></Grid></Button><Button Name="PART_RestoreButton" IsTabStop="False"  Padding="0"Style="{StaticResource WindowButtonStyle}" Margin="0,6"ToolTip="Restore"Command="SystemCommands.RestoreWindowCommand"Visibility="Collapsed"><Grid HorizontalAlignment="Center" VerticalAlignment="Center"><Path Width="10" Height="10"HorizontalAlignment="Center" VerticalAlignment="Center" Data="{DynamicResource PathMetroWindowRestore}" Fill="{DynamicResource WhiteSolidColorBrush}"Stretch="Fill" UseLayoutRounding="False" /></Grid></Button></WrapPanel><Button Name="PART_CloseButton" Margin="0,6" ToolTip="Close"IsTabStop="False" Style="{StaticResource WindowButtonStyle}"Command="SystemCommands.CloseWindowCommand"><Path Width="10" Height="10"HorizontalAlignment="Center"VerticalAlignment="Center"Data="{DynamicResource PathMetroWindowClose}"Fill="{DynamicResource WhiteSolidColorBrush}"Stretch="Fill" /></Button></WrapPanel></Grid><AdornerDecorator Grid.Row="1" KeyboardNavigation.IsTabStop="False"Margin="4"><ContentPresenter x:Name="MainContentPresenter"/></AdornerDecorator><ResizeGrip x:Name="ResizeGrip" HorizontalAlignment="Right" VerticalAlignment="Bottom" Grid.Row="2" IsTabStop="False"Visibility="Collapsed"/></Grid></Border><ControlTemplate.Triggers><Trigger Property="WindowState" Value="Maximized"><Setter Property="Visibility" Value="Visible" TargetName="PART_RestoreButton"/><Setter Property="Visibility" Value="Collapsed" TargetName="PART_MaximizeButton"/></Trigger><MultiTrigger><MultiTrigger.Conditions><Condition Property="ResizeMode"  Value="CanResizeWithGrip" /><Condition Property="WindowState"  Value="Normal" /></MultiTrigger.Conditions><Setter TargetName="ResizeGrip" Property="Visibility" Value="Visible" /></MultiTrigger><MultiTrigger><MultiTrigger.Conditions><Condition Property="ResizeMode"  Value="NoResize" /><Condition Property="WindowStyle"  Value="ToolWindow" /></MultiTrigger.Conditions><Setter TargetName="PART_MinAndMax" Property="Visibility" Value="Collapsed" /></MultiTrigger></ControlTemplate.Triggers></ControlTemplate></Setter.Value></Setter></Style></ResourceDictionary>

三、创建MainWindow.xaml。

<ws:Window x:Class="Wpf45.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"xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"xmlns:ws="https://github.com/WPFDevelopersOrg.WPFDevelopers.Minimal"xmlns:local="clr-namespace:Wpf45"mc:Ignorable="d"Title="MainWindow" Height="450" Width="800"><Grid></Grid>
</ws:Window>

四、删除MainWindow.xaml.cs删除继承。

public partial class MainWindow {public MainWindow(){InitializeComponent();}}

02


效果预览

鸣谢素材提供者菜小松cc

源码地址如下

Github:https://github.com/WPFDevelopersOrg

Gitee:https://gitee.com/WPFDevelopersOrg

WPF开发者QQ群: 340500857 

Github:https://github.com/WPFDevelopersOrg

出处:https://www.cnblogs.com/yanjinhua

版权:本作品采用「署名-非商业性使用-相同方式共享 4.0 国际」许可协议进行许可。

转载请著名作者 出处 https://github.com/WPFDevelopersOrg

55d4dbc9dbd93c42bb4226cfd590c80c.png

扫一扫关注我们,

32c4cdd0466337b43a55b6e7bcba7b4e.gif

更多知识早知道!

1a2e9cf5c1ad64b9f686e13798e6c3dd.gif

点击阅读原文可跳转至源代码

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/291728.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

ngModel 值不更新/显示

angular中的$scope是页面&#xff08;view&#xff09;和数据&#xff08;model&#xff09;之间的桥梁&#xff0c;它链接了页面元素和model&#xff0c;也是angular双向绑定机制的核心。 而ngModel是angular用来处理表单&#xff08;form&#xff09;的最重要的指令&#xff…

linux c之使用pthread_create创建线程pthread_join等待线程和pthread_exit终止线程总结

1、介绍API 1、pthread_create函数 函数简介 pthread_create是UNIX环境创建线程函数 头文件 #include<pthread.h> 函数声明 int pthread_create(pthread_t *restrict tidp,const pthread_attr_t *restrict_attr,void*(*start_rtn)(void*),void *restrict arg); 返回值…

postgresql 修改字段名称

1 ALTER TABLE auth_user RENAME email TO aemail; 转载于:https://www.cnblogs.com/tk091/p/4331324.html

go获取项目内所有proto_gRPC学习之三:初试GO版gRPC开发

欢迎访问我的GitHubhttps://github.com/zq2599/blog_demos内容&#xff1a;所有原创文章分类和汇总&#xff0c;及配套源码&#xff0c;涉及Java、Docker、Kubernetes、DevOPS等&#xff1b;本篇概览本文《gRPC学习》系列的第三篇&#xff0c;前文已准备好gRPC开发环境&#xf…

服务端架构中的“网关服务器”

这么一个场景&#xff1a;一个要承载高并发、具有高性能的后台服务&#xff0c;往往会有多个不同的应用服务。问题来了&#xff0c;你会怎样设计架构呢&#xff1f;如下图所示&#xff0c;为了共用一个稳定高效的网络处理功能&#xff0c;把所有服务写在一个进程里。接下来悲剧…

一起来庆祝 .NET 20 周年!

你知道吗&#xff1f;.NET 将要迎来 20 周年, 在 20 年前的 2002 年, 微软公布了下一代的软件、服务的愿景和路线&#xff0c;2 月 13 日&#xff0c;Visual Studio .NET 推出&#xff0c;.NET 开发平台的第一个版本正式向世界发布。而现在, .NET 6 成为统一的开发平台&#xf…

Python pip 国内镜像大全及使用办法

最近写了一篇关于“微软开源分布式高性能GB框架LightGBM安装使用”的文章&#xff0c;有小伙伴安装python环境遇到了问题。我个人也尝试安装了一下&#xff0c;确实遇到了很多问题。最关键的一个就是使用pip安装时&#xff0c;“https://pypi.python.org/simple/scipy/”访问不…

linux c之c语言符合标准的头文件和linux常用头文件

1.C语言符合标准的头文件 #include <assert.h> //设定插入点 #include <ctype.h> //字符处理 #include <errno.h> //定义错误码 #include <float.h> //浮点数处理 #include <fstream.h> //文件输入&#xff0f;输出 #include <iomanip.h…

为什么一点onclick按钮就提交表单?

下面是一个表单&#xff0c;有一个onclick按钮&#xff0c;点击后上面文本框的内容被添加到下面的文本域中&#xff0c;并可以一直添加&#xff0c;然后点击submit后提交到另一个页面。但是&#xff0c;在Ie9或者火狐浏览器中我一点onclick为什么总是提交表单&#xff0c;在搜狗…

不固定图片宽高瀑布流_APP设计学习:瀑布流式的产品UI设计

看到好的APP产品UI设计&#xff0c;真是忍不住想要停留几秒&#xff0c;慢慢来欣赏。今天学堂君收集了近期不错的优质的APP设计作品&#xff0c;看起来极舒服的UI界面&#xff0c;分享给大家。这一期的重点学习&#xff1a;在APP界面设计当中&#xff0c;如何应用瀑布流式的布局…

虚拟现实大潮渐近:Oculus VR、EA和Avegant等多家公司...

虚拟现实不是新词&#xff0c;上世纪的许多科幻小说中就描述过未来虚拟现实技术高度发达后的世界&#xff0c;但是这两年&#xff0c;虚拟现实真正在商业市场有了新的突破&#xff0c;代表者就是Oculus VR。近日&#xff0c;一众在虚拟现实领域有所建树的公司结成了“沉浸式技术…

【Blog.Core开源】网关自定义认证鉴权与传参

书接上文&#xff0c;上回咱们说到了《【Blog.Core开源】网关统一集成下游服务文档》&#xff0c;已经将多个下游服务统一集成到了网关里&#xff0c;并且也把接口文档Swagger给集成了&#xff0c;那今天就说一下认证和鉴权相关的话题。继续说下故事背景在平时开发的时候&#…

linux网络编程之inet_pton和inet_ntop函数

Linux下这2个IP地址转换函数,可以在将IP地址在“点分十进制”和“整数”之间转换 而且,inet_pton和inet_ntop这2个函数能够处理ipv4和ipv6。算是比较新的函数了。 1、inet_pton函数原型如下[将“点分十进制” -> “整数”] #include <sys/types.h>#include <sys…

私活利器,docker快速部署node.js应用

http://cnodejs.org/topic/53f494d9bbdaa79d519c9a4a 最近研究了几天docker的快速部署&#xff0c;感觉很有新意&#xff0c;非常轻量级和方便&#xff0c;打算在公司推广一下&#xff0c;解放运维&#xff0c;省得每次部署一台新服务器都去跑安装脚本了&#xff0c;对于我们开…

HDFS HA与QJM(Quorum Journal Manager)介绍及官网内容整理

问题导读1.HDFS HA与QJM解决了什么问题&#xff1f; 2.HDFS HA与QJM区别是什么&#xff1f; 3.在HA&#xff08;两个namenode&#xff09;架构下&#xff0c;如何访问hdfs文件&#xff1f;【使用QJM构建HDFS HA架构(2.2)】本文主要介绍HDFS HA特性&#xff0c;以及如何使用QJM(…

#时间预测算法_【时间序列】时序预测竞赛之异常检测算法综述

本文将介绍在时间序列预测相关问题中常见的异常检测算法&#xff0c;可以很大程度上帮助改善最终预测效果。异常分类时间序列的异常检测问题通常表示为相对于某些标准信号或常见信号的离群点。虽然有很多的异常类型&#xff0c;但是我们只关注业务角度中最重要的类型&#xff0…

监测利器cacti服务安装

1、Cacti原理及概述1Cacti是一款使用PHP语言开发的性能与流量监测工具。监测的对象可以是linux也可以是windows也可以是路由器交换机等网络设备主要基于SNMPsimple network managerprotocol简单网络管理协议来搜集cpu占用内存使用运行进程数磁盘空间网卡流量等各种网络数据。2实…

linux c之解决array subscript is not integer和AF_NET not undeclared

1、array subscript is not integer 我一开始写的代码是这样的写的 buf[strlen[buf] - 1] \0; 很明显写错了&#xff0c;以后不要再犯这样的错误了&#xff0c;切记 buf[strlen(buf) - 1] \0; 2、AF_NET not undeclared 这是我写的代码 inet.pton(AF_NET, buf 6, &add…

C#中的类型转换

前几篇文章中经常说到强制类型转换&#xff0c;就是可以将派生类对象强制转换为基类对象的做法或者通过as运算符进行的转换。今天我们就来一起简单了解复习下在C#中都有哪些类型的转换。要理解转换很容易&#xff0c;日常的开发编码过程中&#xff0c;由于变量类型的不同我们可…

Excel 用于批量把单元格设置为文本格式保存的数字的宏

首先把所有的数字录入&#xff08;或者导出为&#xff09;井号数字的格式&#xff0c;比如“#3333333323424234234234”&#xff0c;然后运行下面的宏&#xff1a; Sub Num2Text()If Not TypeOf Application.Selection Is Range ThenMsgBox "You must select cells!"…