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. TOR的使用

    使用步骤: 1.配置,该计算机是否需要通过代理访问互联网?选否 2.该计算机的防火墙是否仅允许特定端口的互联网连接?选否 3.互联网服务提供商(ISP)是否对Tor网络连接进行了封锁或审查?选是 4. ...

  2. 过滤器Filter(2)

    过滤器-编码统一处理 过滤器的写法如下 package com.gqx.encodeFilter; import java.io.IOException; import java.lang.refle ...

  3. zend studio-字体大小设置

    在使用zend studio的过程中为了方便我们编码,很多时候需要设置编码的字体的大小,设置步骤如下: 选择[Windows]-[preference]-[general]-[appearance]- ...

  4. 【Servlet】Servlet应用的get、post访问及和JSP的配合使用

    Servlet是一种服务器端的Java应用程序,具有独立于平台和协议的特性,可以生成动态的Web页面. 它担当客户请求(Web浏览器或其他HTTP客户程序)与服务器响应(HTTP服务器上的数据库或应用 ...

  5. orczhou----MYSQL

    https://yq.aliyun.com/users/1597777588650149?spm=5176.blog11192.yqblogcon1.2.5mdGQb

  6. Android开发之位置定位详解与实例解析(GPS定位、Google网络定位,BaiduLBS(SDK)定位)

    在android开发中地图和定位是很多软件不可或缺的内容,这些特色功能也给人们带来了很多方便.定位一般分为三种发方案:即GPS定位.Google网络定位以及基站定位 最简单的手机定位方式当然是通过GP ...

  7. Android 自学之帧布局 FrameLayout

    帧布局(FrameLayout)直接继承了ViewGroup组件: 帧布局容器为每一个加入其中的组件都创建了一个空白的区域,这个区域我们称之为一帧,所有每个组件都占据一帧,这些都会根据gravity属 ...

  8. javascript的一点误解

    var a=[]; for(var i = 0; i < 10; i++) { a[i] = function() { return i; } } console.log(a[9]()); co ...

  9. 编译inotify报错

    错误如下: configure: error: no acceptable C compiler found in $PATH 这是因为没有找到编译器的原因造成的 解决方法: 安装gcc [root@ ...

  10. React入门资源整理

    另外,附上我搜集的一些比较实用的学习资料,建议先看这些撸起来,再看什么乱七八糟的awsome系列. React入门资源整理 React项目新手指南 http://www.w3ctech.com/top ...