private System.ComponentModel.Container components = null;
  private Microsoft.Ink.InkOverlay m_InkOverlay;
  private System.Windows.Forms.GroupBox groupBox1;
  private System.Windows.Forms.RadioButton InkIt;
  private System.Windows.Forms.RadioButton DelIt;
  private System.Windows.Forms.RadioButton SelectIt;
  private System.Windows.Forms.RadioButton PointErase;
  private enum InkDrawStateEnum {Ink,Select,Delete,PointErase};
  private int InkDrawState = (int) InkDrawStateEnum.Ink;
        private Button btnSave;
        private PictureBox pictureBox1;
        Microsoft.Ink.InkCollector theInkCollector;

public Form1()
  {

InitializeComponent();    // Instantiate the InkOverlay.

m_InkOverlay = new Microsoft.Ink.InkOverlay(this.Handle);

m_InkOverlay.Enabled = true;

// Hook up the InkOverlay object's Stroke event handler.

m_InkOverlay.Stroke += new InkCollectorStrokeEventHandler( InkStrokeAdded );                    // Hook up to the InkOverlay object's Painted event handler.    m_InkOverlay.Painted += new InkOverlayPaintedEventHandler(InkPainted);

}

private void InkStrokeAdded( object sender, InkCollectorStrokeEventArgs e)
  {
   // Invalidate the form so we can force a repaint.
   this.Invalidate();
  }

private void InkPainted( object sender, PaintEventArgs e)
  {
   // Call the helper function which will redraw the form.
   RendererEx.DrawStrokeIds(e.Graphics, Font, m_InkOverlay.Ink);
  }

protected override void Dispose( bool disposing )
  {
   if( disposing )
   {
    if (components != null)
    {
     components.Dispose();
    }
   }
   base.Dispose( disposing );
  }

private void InitializeComponent()
  {

this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.btnSave = new System.Windows.Forms.Button();
            this.PointErase = new System.Windows.Forms.RadioButton();
            this.SelectIt = new System.Windows.Forms.RadioButton();
            this.DelIt = new System.Windows.Forms.RadioButton();
            this.InkIt = new System.Windows.Forms.RadioButton();
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            this.groupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            this.SuspendLayout();

     this.groupBox1.Controls.Add(this.btnSave);
            this.groupBox1.Controls.Add(this.PointErase);
            this.groupBox1.Controls.Add(this.SelectIt);
            this.groupBox1.Controls.Add(this.DelIt);
            this.groupBox1.Controls.Add(this.InkIt);
            this.groupBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.groupBox1.Location = new System.Drawing.Point(0, 278);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(458, 45);
            this.groupBox1.TabIndex = 0;
            this.groupBox1.TabStop = false;

     this.btnSave.Location = new System.Drawing.Point(371, 16);
            this.btnSave.Name = "btnSave";
            this.btnSave.Size = new System.Drawing.Size(75, 23);
            this.btnSave.TabIndex = 4;
            this.btnSave.Text = "Save";
            this.btnSave.UseVisualStyleBackColor = true;
            this.btnSave.Click += new System.EventHandler(this.btnSave_Click);

    this.PointErase.Location = new System.Drawing.Point(272, 15);
            this.PointErase.Name = "PointErase";
            this.PointErase.Size = new System.Drawing.Size(96, 22);
            this.PointErase.TabIndex = 3;
            this.PointErase.Text = "Point Erase";
            this.PointErase.CheckedChanged += new System.EventHandler(this.PointErase_CheckedChanged);

    this.SelectIt.Location = new System.Drawing.Point(80, 15);
            this.SelectIt.Name = "SelectIt";
            this.SelectIt.Size = new System.Drawing.Size(80, 22);
            this.SelectIt.TabIndex = 2;
            this.SelectIt.Text = "Select";
            this.SelectIt.CheckedChanged += new System.EventHandler(this.SelectIt_CheckedChanged);

    this.DelIt.Location = new System.Drawing.Point(184, 15);
            this.DelIt.Name = "DelIt";
            this.DelIt.Size = new System.Drawing.Size(64, 22);
            this.DelIt.TabIndex = 1;
            this.DelIt.Text = "Delete";
            this.DelIt.CheckedChanged += new System.EventHandler(this.DelIt_CheckedChanged);

    this.InkIt.Checked = true;
            this.InkIt.Location = new System.Drawing.Point(8, 15);
            this.InkIt.Name = "InkIt";
            this.InkIt.Size = new System.Drawing.Size(56, 22);
            this.InkIt.TabIndex = 0;
            this.InkIt.TabStop = true;
            this.InkIt.Text = "Ink";
            this.InkIt.CheckedChanged += new System.EventHandler(this.InkIt_CheckedChanged);

     this.pictureBox1.Location = new System.Drawing.Point(248, 26);
            this.pictureBox1.Name = "pictureBox1";
            this.pictureBox1.Size = new System.Drawing.Size(198, 246);
            this.pictureBox1.TabIndex = 1;
            this.pictureBox1.TabStop = false;

     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
            this.ClientSize = new System.Drawing.Size(458, 323);
            this.Controls.Add(this.pictureBox1);
            this.Controls.Add(this.groupBox1);
            this.Name = "Form1";
            this.Text = "StrokeViewer";
            this.groupBox1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            this.ResumeLayout(false);

}

[STAThread]
  static void Main()
  {
   Application.Run(new Form1());
  }

private void InkIt_CheckedChanged(object sender, System.EventArgs e)
  {
   InkDrawState = (int) InkDrawStateEnum.Ink;
   m_InkOverlay.EditingMode = InkOverlayEditingMode.Ink;
  }

private void SelectIt_CheckedChanged(object sender, System.EventArgs e)
  {
   InkDrawState = (int) InkDrawStateEnum.Select;
   m_InkOverlay.EditingMode = InkOverlayEditingMode.Select;
  }

private void DelIt_CheckedChanged(object sender, System.EventArgs e)
  {
   InkDrawState = (int) InkDrawStateEnum.Delete;
   m_InkOverlay.EditingMode = InkOverlayEditingMode.Delete;
   m_InkOverlay.EraserMode = InkOverlayEraserMode.StrokeErase;
  }

private void PointErase_CheckedChanged(object sender, System.EventArgs e)
  {
   InkDrawState = (int) InkDrawStateEnum.PointErase;
   m_InkOverlay.EditingMode = InkOverlayEditingMode.Delete;
   m_InkOverlay.EraserMode = InkOverlayEraserMode.PointErase;
  }

private void btnSave_Click(object sender, EventArgs e)
        {
            SaveFileDialog sfd = new SaveFileDialog();
            sfd.Filter = "(*.*)|*.gif";
            if (sfd.ShowDialog() == DialogResult.OK)
            {
                FileStream gifFile;
                byte[] fortifiedGif = null;
                gifFile = File.OpenWrite(sfd.FileName);
                fortifiedGif = m_InkOverlay.Ink.Save(PersistenceFormat.Gif);
                gifFile.Write(fortifiedGif, 0, fortifiedGif.Length);
                gifFile.Close();
            }
        }

InkPicture 控件使用_01的更多相关文章

  1. JS调用Android、Ios原生控件

    在上一篇博客中已经和大家聊了,关于JS与Android.Ios原生控件之间相互通信的详细代码实现,今天我们一起聊一下JS调用Android.Ios通信的相同点和不同点,以便帮助我们在进行混合式开发时, ...

  2. HTML5 progress和meter控件

    在HTML5中,新增了progress和meter控件.progress控件为进度条控件,可表示任务的进度,如Windows系统中软件的安装.文件的复制等场景的进度.meter控件为计量条控件,表示某 ...

  3. 百度 flash html5自切换 多文件异步上传控件webuploader基本用法

    双核浏览器下在chrome内核中使用uploadify总有302问题,也不知道如何修复,之所以喜欢360浏览器是因为帮客户控制渲染内核: 若页面需默认用极速核,增加标签:<meta name=& ...

  4. JS与APP原生控件交互

    "热更新"."热部署"相信对于混合式开发的童鞋一定不陌生,那么APP怎么避免每次升级都要在APP应用商店发布呢?这里就用到了混合式开发的概念,对于电商网站尤其显 ...

  5. UWP开发必备:常用数据列表控件汇总比较

    今天是想通过实例将UWP开发常用的数据列表做汇总比较,作为以后项目开发参考.UWP开发必备知识点总结请参照[UWP开发必备以及常用知识点总结]. 本次主要讨论以下控件: GridView:用于显示数据 ...

  6. 【踩坑速记】开源日历控件,顺便全面解析开源库打包发布到Bintray/Jcenter全过程(新),让开源更简单~

    一.写在前面 自使用android studio开始,就被它独特的依赖方式:compile 'com.android.support:appcompat-v7:25.0.1'所深深吸引,自从有了它,麻 ...

  7. 对百度WebUploader开源上传控件的二次封装,精简前端代码(两句代码搞定上传)

    前言 首先声明一下,我这个是对WebUploader开源上传控件的二次封装,底层还是WebUploader实现的,只是为了更简洁的使用他而已. 下面先介绍一下WebUploader 简介: WebUp ...

  8. Windows API 设置窗口下控件Enable属性

    参考页面: http://www.yuanjiaocheng.net/webapi/create-crud-api-1-put.html http://www.yuanjiaocheng.net/we ...

  9. VB.NET设置控件和窗体的显示级别

    前言:在用VB.NET开发射频检测系统ADS时,当激活已存在的目标MDI子窗体时,被其他子窗体遮住了,导致目标MDI子窗体不能显示. 这个问题怎么解决呢?网上看到一篇帖子VB.NET设置控件和窗体的显 ...

随机推荐

  1. PHP windows下命令行用法 学习

    php -v  查看版本 php -r "$a = 1; var_dump($a);"  执行php代码 php -r "var_dump($argv);" a ...

  2. 如何将Android默认的Camra程序导入到eclipse中

    由于工作需要将camera源码导入到Eclipse中,找了很多的方法,现将自己的整理发出来.... 由于开发的要求,需要将Android默认的Camra程序导入到eclipse中,进行修改和再开发. ...

  3. 10409 - Die Game

    Problem G: Die Game Life is not easy. Sometimes it is beyond your control. Now, as contestants of AC ...

  4. [Node.js] Creating JWTs (JSON Web Tokens) in Node

    In this lesson we will look at all of the pieces that combine together to create a JWT (j AWT) or JS ...

  5. linux和windows中设置环境变量经常使用命令

    Linux和Windows下查看环境变量方法 一.查看全部环境变量的名称和值: Linux下:export Windows下:set 二.依据名称查该环境变量的值: Linux下:echo $环境变量 ...

  6. ThinkPHP函数详解:cookie方法

    cookie函数也是一个多元化操作函数,完成cookie的设置.获取和删除操作. Cookie 用于Cookie 设置.获取.删除操作 用法cookie($name, $value='', $opti ...

  7. js 取到相同的字符串 返回对应的下标

    ["aaa","aaa","","ddd","eee","eee"," ...

  8. sqlserver2008中如何用右键可视化的设置外键

    右键->设计 然后打表设计界面打开了然后右键点你要设置与其它表关联的列然后点关系,选择外键表与列然后点保存,就这样  

  9. 关于ASPOSE.WORD使用上的一个小问题

    最近实习期间负责了公司某个项目的一个功能模块里面的word导出功能,使用的是ASPOSE.WORD类库,但是经常导出时候会遇到图中的问题,大概意思就是两个表格不能跨在一起,调试了好几次还是没发现具体的 ...

  10. DotNet Core 之旅(一)

    1.下载安装 DotNetCore.1.0.0-SDK.Preview2-x64.exe 下载链接:https://www.microsoft.com/net/download ps:如果有vs201 ...