WPF实现拖动

作者:追风剑情 发布于:2019-6-26 15:09 分类:C#

XAML官方文档 https://docs.microsoft.com/zh-cn/dotnet/framework/wpf/advanced/xaml-overview-wpf

WPF实现拖动

示例:拖动UserControl
一、App.xml中定义拖动条样式
  1. <Application x:Class="Test.App"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:local="clr-namespace:Test"
  5. StartupUri="LoginWindow.xaml">
  6. <Application.Resources>
  7. <Style x:Key="Style.TopDragBarButton"
  8. TargetType="ButtonBase">
  9. <Setter Property="Width" Value="780" />
  10. <Setter Property="Height" Value="20" />
  11. <Setter Property="FontSize" Value="12" />
  12. <Setter Property="Background" Value="#FF4F4E4E" />
  13. <Setter Property="HorizontalContentAlignment" Value="Center" />
  14. <Setter Property="VerticalContentAlignment" Value="Center" />
  15. <Setter Property="Foreground" Value="#FFFFFFFF" />
  16. <Setter Property="Template">
  17. <Setter.Value>
  18. <ControlTemplate TargetType="{x:Type ButtonBase}">
  19. <Border x:Name="Border" Width="{TemplateBinding Width}"
  20. Height="{TemplateBinding Height}"
  21. CornerRadius="0" Background="{TemplateBinding Background}">
  22. <TextBlock x:Name="TextBlock"
  23. Text="{TemplateBinding Content}"
  24. FontSize="{TemplateBinding FontSize}"
  25. HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
  26. VerticalAlignment="{TemplateBinding VerticalContentAlignment}" />
  27. </Border>
  28.  
  29. <ControlTemplate.Triggers>
  30. <Trigger Property="IsPressed" Value="True">
  31. <Setter Property="Background"
  32. Value="#FF4F4E4E" />
  33. <Setter TargetName="TextBlock" Property="Foreground" Value="#FFFFFFFF" />
  34. </Trigger>
  35. <Trigger Property="IsEnabled" Value="False">
  36. <Setter TargetName="Border" Property="Background" Value="#4D0087FF" />
  37. <Setter TargetName="TextBlock" Property="Foreground" Value="#4DFFFFFF" />
  38. </Trigger>
  39. </ControlTemplate.Triggers>
  40. </ControlTemplate>
  41. </Setter.Value>
  42. </Setter>
  43. </Style>
  44. </Application.Resources>
  45. </Application>

二、在要拖动的UserControl界面中加入
<Button Name="topBar" Content="拖动条" Style="{StaticResource Style.TopDragBarButton}" />

三、控制拖动的代码
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows;
  7. using System.Windows.Controls;
  8. using System.Windows.Data;
  9. using System.Windows.Documents;
  10. using System.Windows.Input;
  11. using System.Windows.Media;
  12. using System.Windows.Media.Imaging;
  13. using System.Windows.Navigation;
  14. using System.Windows.Shapes;
  15. using System.ComponentModel;
  16. using System.Timers;
  17. using System.Windows.Threading;
  18.  
  19. namespace Test
  20. {
  21. public class DragBar
  22. {
  23. public UserControl target;
  24.  
  25. private Point downPoint;
  26. private Thickness orgThickness;
  27. private Thickness tmpThickness = new Thickness();
  28.  
  29. public DragBar()
  30. {
  31. }
  32.  
  33. public void PreviewMouseLeftButtonDown(object sender, MouseButtonEventArgs e)
  34. {
  35. downPoint = Mouse.GetPosition(null);
  36. orgThickness = target.Margin;
  37. }
  38.  
  39. public void PreviewMouseMove(object sender, MouseEventArgs e)
  40. {
  41. Point mousePos = Mouse.GetPosition(null);
  42. Vector diff = mousePos - downPoint;
  43.  
  44. if (e.LeftButton == MouseButtonState.Pressed &&
  45. Math.Abs(diff.X) > SystemParameters.MinimumHorizontalDragDistance &&
  46. Math.Abs(diff.Y) > SystemParameters.MinimumVerticalDragDistance)
  47. {
  48. double x = orgThickness.Left + diff.X;
  49. double y = orgThickness.Top + diff.Y;
  50. tmpThickness.Left = x;
  51. tmpThickness.Top = y;
  52. tmpThickness.Right = -x;
  53. tmpThickness.Bottom = -y;
  54. target.Margin = tmpThickness;
  55. }
  56. }
  57. }
  58. }

四、为子窗口加入拖动功能
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows;
  7. using System.Windows.Controls;
  8. using System.Windows.Data;
  9. using System.Windows.Documents;
  10. using System.Windows.Input;
  11. using System.Windows.Media;
  12. using System.Windows.Media.Imaging;
  13. using System.Windows.Navigation;
  14. using System.Windows.Shapes;
  15. using System.ComponentModel;
  16. using System.Timers;
  17. using System.Windows.Threading;
  18.  
  19. namespace Test
  20. {
  21. /// <summary>
  22. /// Interaction logic for UserControl.xaml
  23. /// </summary>
  24. public partial class PanelWindow : UserControl
  25. {
  26. private DragBar dragBar = new DragBar();
  27.  
  28. public PassportWindow()
  29. {
  30. InitializeComponent();
  31. Initialize();
  32. }
  33.  
  34. private void Initialize()
  35. {
  36. dragBar.target = this;//设置拖动目标
  37. topBar.AddHandler(Button.PreviewMouseLeftButtonDownEvent, new MouseButtonEventHandler(dragBar.PreviewMouseLeftButtonDown), true);
  38. topBar.AddHandler(Button.MouseMoveEvent, new MouseEventHandler(dragBar.PreviewMouseMove), true);
  39. }
  40. }
  41. }

运行测试

2222.gif

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号