WPF InkCanvas绘制矩形和椭圆

所属分类: 软件编程 / C#教程 阅读数: 105
收藏 0 赞 0 分享

前面说到了InkCanvas的基本操作,这里用一个实例来说明具体应用:绘制矩形和椭圆。

效果图

xaml代码

<Window x:Class="WPF_InkCanvas.ROI_InkCanvas"
  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:local="clr-namespace:WPF_InkCanvas"
  mc:Ignorable="d"
  Title="ROI_InkCanvas" Height="450" Width="800">
 <Grid>
  <Grid.RowDefinitions>
   <RowDefinition/>
   <RowDefinition Height="auto"/>
  </Grid.RowDefinitions>
  <Image Name="imgMeasure" HorizontalAlignment="Center" Stretch="Uniform"/>
  <InkCanvas Name="inkCanvasMeasure" EditingMode="None" Background="Transparent" Strokes="{Binding InkStrokes, Mode=TwoWay}" HorizontalAlignment="Center" 
     Width="{Binding ElementName=imgMeasure, Path=ActualWidth}" Height="{Binding ElementName=imgMeasure, Path=ActualHeight}"
     MouseDown="InkCanvasMeasure_MouseDown" MouseMove="InkCanvasMeasure_MouseMove">
   <Label Content="{Binding MeaInfo}" Background="Transparent" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="10" 
     FontSize="18" Foreground="Red" IsHitTestVisible="False"/>
  </InkCanvas>
  <StackPanel Grid.Row="1" Orientation="Horizontal">
   <Button Content="OpenFile" Margin="5" HorizontalAlignment="Left" FontSize="20" Click="OpenFile_Click"/>
   <ToggleButton Name="btnSquare" Content="Draw Square" Margin="5" HorizontalAlignment="Left" FontSize="20" Click="DrawSquare_Click"/>
   <ToggleButton Name="btnEllipse" Content="Draw Ellipse" Margin="5" HorizontalAlignment="Left" FontSize="20" Click="DrawEllipse_Click"/>
  </StackPanel>
 </Grid>
</Window>

后台代码

using Microsoft.Win32;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
 
namespace WPF_InkCanvas
{
 /// <summary>
 /// ROI_InkCanvas.xaml 的交互逻辑
 /// </summary>
 public partial class ROI_InkCanvas : Window
 {
  private ViewModel viewModel;
  private System.Windows.Point iniP;
  public ROI_InkCanvas()
  {
   InitializeComponent();
 
   DrawingAttributes drawingAttributes = new DrawingAttributes
   {
    Color = Colors.Red,
    Width = 2,
    Height = 2,
    StylusTip = StylusTip.Rectangle,
    //FitToCurve = true,
    IsHighlighter = false,
    IgnorePressure = true,
 
   };
   inkCanvasMeasure.DefaultDrawingAttributes = drawingAttributes;
 
   viewModel = new ViewModel
   {
    MeaInfo = "测试······",
    InkStrokes = new StrokeCollection(),
   };
 
   DataContext = viewModel;
  }
 
  private void OpenFile_Click(object sender, RoutedEventArgs e)
  {
   OpenFileDialog openDialog = new OpenFileDialog
   {
    Filter = "Image Files (*.jpg)|*.jpg|Image Files (*.png)|*.png|Image Files (*.bmp)|*.bmp",
    Title = "Open Image File"
   };
   if (openDialog.ShowDialog() == true)
   {
    BitmapImage image = new BitmapImage();
    image.BeginInit();
    image.UriSource = new Uri(openDialog.FileName, UriKind.RelativeOrAbsolute);
    image.EndInit();
    imgMeasure.Source = image;
   }
  }
 
  private void DrawSquare_Click(object sender, RoutedEventArgs e)
  {
   if (btnSquare.IsChecked == true)
   {
    btnEllipse.IsChecked = false;
   }
  } 
 
  private void DrawEllipse_Click(object sender, RoutedEventArgs e)
  {
   if (btnEllipse.IsChecked == true)
   {
    btnSquare.IsChecked = false;
   }
  }
 
  private List<System.Windows.Point> GenerateEclipseGeometry(System.Windows.Point st, System.Windows.Point ed)
  {
   double a = 0.5 * (ed.X - st.X);
   double b = 0.5 * (ed.Y - st.Y);
   List<System.Windows.Point> pointList = new List<System.Windows.Point>();
   for (double r = 0; r <= 2 * Math.PI; r = r + 0.01)
   {
    pointList.Add(new System.Windows.Point(0.5 * (st.X + ed.X) + a * Math.Cos(r), 0.5 * (st.Y + ed.Y) + b * Math.Sin(r)));
   }
   return pointList;
  }
  private void InkCanvasMeasure_MouseDown(object sender, MouseButtonEventArgs e)
  {
   if (e.LeftButton == MouseButtonState.Pressed)
   {
    iniP = e.GetPosition(inkCanvasMeasure);
   }
  }
 
  private void InkCanvasMeasure_MouseMove(object sender, MouseEventArgs e)
  {
   if (e.LeftButton == MouseButtonState.Pressed)
   {
    // Draw square
    if (btnSquare.IsChecked == true)
    {
     System.Windows.Point endP = e.GetPosition(inkCanvasMeasure);
     List<System.Windows.Point> pointList = new List<System.Windows.Point>
     {
      new System.Windows.Point(iniP.X, iniP.Y),
      new System.Windows.Point(iniP.X, endP.Y),
      new System.Windows.Point(endP.X, endP.Y),
      new System.Windows.Point(endP.X, iniP.Y),
      new System.Windows.Point(iniP.X, iniP.Y),
     };
     StylusPointCollection point = new StylusPointCollection(pointList);
     Stroke stroke = new Stroke(point)
     {
      DrawingAttributes = inkCanvasMeasure.DefaultDrawingAttributes.Clone()
     };
     viewModel.InkStrokes.Clear();
     viewModel.InkStrokes.Add(stroke);
    }
    // Draw Eclipse
    else if (btnEllipse.IsChecked == true)
    {
     System.Windows.Point endP = e.GetPosition(inkCanvasMeasure);
     List<System.Windows.Point> pointList = GenerateEclipseGeometry(iniP, endP);
     StylusPointCollection point = new StylusPointCollection(pointList);
     Stroke stroke = new Stroke(point)
     {
      DrawingAttributes = inkCanvasMeasure.DefaultDrawingAttributes.Clone()
     };
     viewModel.InkStrokes.Clear();
     viewModel.InkStrokes.Add(stroke);
    }
   }
  }
 }
}

ViewModel.cs代码

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Ink;
 
namespace WPF_InkCanvas
{
 class ViewModel : INotifyPropertyChanged
 {
  public event PropertyChangedEventHandler PropertyChanged;
 
  protected virtual void OnPropertyChanged(string propertyName = null)
  {
   if (PropertyChanged != null)
    PropertyChanged.Invoke(this, new PropertyChangedEventArgs(propertyName));
  }
 
  private string meaInfo;
  public string MeaInfo
  {
   get => meaInfo;
   set
   {
    meaInfo = value;
    OnPropertyChanged("MeaInfo");
   }
  }
 
  private StrokeCollection inkStrokes;
  public StrokeCollection InkStrokes
  {
   get { return inkStrokes; }
   set
   {
    inkStrokes = value;
    OnPropertyChanged("InkStrokes");
   }
  }
 }
}

补充说明:为什么要注释掉画笔属性//FitToCurve = true,可以自行体会下不注释会是个什么效果;将InkCanvas的Strokes绑定到变量有好处,在别的窗口也能获取到这个对象的哦,因为它是在viewModel里的,传viewModel参数就可以了;椭圆绘制完成后设置InkCanvas的EdittingMode为Select就可以修改大小和形状。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

更多精彩内容其他人还在看

c#开发word批量转pdf源码分享

已经安装有Office环境,借助一些简单的代码即可实现批量Word转PDF,看下面的实例源码吧
收藏 0 赞 0 分享

c# xml API操作的小例子

这篇文章主要介绍了c# xml API操作的小例子,有需要的朋友可以参考一下
收藏 0 赞 0 分享

c#唯一值渲染实例代码

这篇文章主要介绍了c#唯一值渲染实例代码,有需要的朋友可以参考一下
收藏 0 赞 0 分享

淘宝IP地址库采集器c#代码

这篇文章主要介绍了淘宝IP地址库采集器c#代码,有需要的朋友可以参考一下
收藏 0 赞 0 分享

C#在后台运行操作(BackgroundWorker用法)示例分享

BackgroundWorker类允许在单独的专用线程上运行操作。如果需要能进行响应的用户界面,而且面临与这类操作相关的长时间延迟,则可以使用BackgroundWorker类方便地解决问题,下面看示例
收藏 0 赞 0 分享

c#文本加密程序代码示例

这是一个加密软件,但只限于文本加密,加了窗口控件的滑动效果,详细看下面的代码
收藏 0 赞 0 分享

c#生成站点地图(SiteMapPath)文件示例程序

这篇文章主要介绍了c#生成站点地图(SiteMapPath)文件的示例,大家参考使用
收藏 0 赞 0 分享

C# 键盘Enter键取代Tab键实现代码

这篇文章主要介绍了C# 键盘Enter键取代Tab键实现代码,有需要的朋友可以参考一下
收藏 0 赞 0 分享

C# WinForm导出Excel方法介绍

在.NET应用中,导出Excel是很常见的需求,导出Excel报表大致有以下三种方式:Office PIA,文件流和NPOI开源库,本文只介绍前两种方式
收藏 0 赞 0 分享

C#串口通信程序实例详解

在.NET平台下创建C#串口通信程序,.NET 2.0提供了串口通信的功能,其命名空间是System.IO.Ports,创建C#串口通信程序的具体实现是如何的呢?让我们开始吧
收藏 0 赞 0 分享
查看更多