WPF 自定义可拖动标题栏
要注意,拖拽的地方,需要加背景色,否则 DrageMove 将无效
MainWindows.xaml
<Window x:Class="Report.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:views="clr-namespace:Report.Views" WindowState="Normal" WindowStyle="None" ResizeMode="NoResize" WindowStartupLocation="CenterScreen" mc:Ignorable="d" d:DesignWidth="1280" d:DesignHeight="720" Width="780" Height="360"> <Window.Resources> <ResourceDictionary> <ResourceDictionary.MergedDictionaries> <!--<ResourceDictionary Source="/VipSoft.Themes;component/Styles/MainWindow.xaml"/>--> </ResourceDictionary.MergedDictionaries> </ResourceDictionary> </Window.Resources> <Border Style="{StaticResource Layout-Border}"> <DockPanel> <DockPanel LastChildFill="False" Dock="Top" Height="40" Background="#1F6AAC" MouseLeftButtonDown="DockContainer_OnDragMove" > <Image Name="LoginLogoImage" Style="{StaticResource Logo-Image}"/> <TextBlock Name="TitleBlock" Style="{StaticResource Layout-Title}" Text="XX 信息管理系统"></TextBlock> <Button DockPanel.Dock="Right" Style="{StaticResource Button-Close}" ToolTip="关闭" Click="Close_OnClick"></Button> <ToggleButton DockPanel.Dock="Right" Style="{StaticResource Button-Max}" Name="TopMaxButton" Click="MaxButton_Click" ></ToggleButton> <Button DockPanel.Dock="Right" Style="{StaticResource Button-Min}" ToolTip="最小化" Click="MinButton_Click" ></Button> <Button DockPanel.Dock="Right" Style="{StaticResource Button-Top-Bar}" Content="" ToolTip="帮助"></Button> <Button DockPanel.Dock="Right" Style="{StaticResource Button-Top-Bar}" Content="" ToolTip="设置"></Button> </DockPanel> <DockPanel> <views:Navigate Padding="5" Background="#F1F2F3" Width="70" x:Name="NavigateMenu" MenuClick="Navigate_OnMenuClick"></views:Navigate> <Border BorderBrush="#D1D3D5" BorderThickness="0.9,0,0,0" Padding="2" Background="#F1F2F3" > <ContentControl Name="MainContent" ></ContentControl> </Border> </DockPanel> </DockPanel> </Border> </Window>
MainWindows.xaml.cs
private void DockContainer_OnDragMove(object sender, MouseButtonEventArgs e) { switch (e.ClickCount) { // Background="White" 事件所在的容器,不加这个属性,不能拖拽 case 1://单击 { this.DragMove(); break; } case 2://双击 { MaxButton_Click(null, null); TopMaxButton.IsChecked = WindowState == WindowState.Maximized; break; } } } private void MaxButton_Click(object sender, RoutedEventArgs e) { WindowState = WindowState == WindowState.Maximized ? WindowState.Normal : WindowState.Maximized; } private void MinButton_Click(object sender, RoutedEventArgs e) { WindowState = WindowState.Minimized; } private void Close_OnClick(object sender, RoutedEventArgs e) { MessageBoxResult vr = System.Windows.MessageBox.Show("确定要退出应用吗", "操作提示",MessageBoxButton.YesNo, MessageBoxImage.Question); if (vr == MessageBoxResult.OK) // 如果是确定,就执行下面代码,记得换上自己的代码喔 { Close(); System.Windows.Application.Current.Shutdown(); } }
本文来自博客园,作者:VipSoft 转载请注明原文链接:https://www.cnblogs.com/vipsoft/p/16736959.html
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】博客园社区专享云产品让利特惠,阿里云新客6.5折上折
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 一个费力不讨好的项目,让我损失了近一半的绩效!
· 清华大学推出第四讲使用 DeepSeek + DeepResearch 让科研像聊天一样简单!
· 实操Deepseek接入个人知识库
· CSnakes vs Python.NET:高效嵌入与灵活互通的跨语言方案对比
· Plotly.NET 一个为 .NET 打造的强大开源交互式图表库
2021-09-28 compilation.templatesPlugin is not a function
2020-09-28 Intellij idea 生成带注释的get/set
2019-09-28 resources-plugin-2.6.pom.part.lock (没有那个文件或目录)
2019-09-28 Starting Jenkins bash: /usr/bin/java: 没有那个文件或目录
2014-09-28 C# Dictionary通过value获取对应的key值