国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > C# > 正文

WPF InkCanvas繪制矩形和橢圓

2019-10-29 19:41:17
字體:
來源:轉載
供稿:網友

前面說到了InkCanvas的基本操作,這里用一個實例來說明具體應用:繪制矩形和橢圓。

效果圖

WPF,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"  <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",      };      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就可以修改大小和形狀。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持VEVB武林網。


注:相關教程知識閱讀請移步到c#教程頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 金塔县| 长春市| 防城港市| 永寿县| 辰溪县| 淄博市| 乐业县| 麟游县| 防城港市| 孟连| 莱西市| 阿拉善盟| 芜湖市| 昌图县| 门头沟区| 台东县| 嘉峪关市| 凤凰县| 永宁县| 建始县| 紫阳县| 呼伦贝尔市| 广昌县| 金寨县| 深水埗区| 景泰县| 基隆市| 翼城县| 金昌市| 商南县| 类乌齐县| 华池县| 通海县| 伊宁市| 宿州市| 固安县| 土默特左旗| 西昌市| 塔城市| 虎林市| 乐山市|