>> c#操作cmd命令

  1. using System.Diagnostics;
  2. private string RunCmd(string command)
  3. {
  4. //实例一个Process类,启动一个独立进程
  5. Process p = new Process();
  6.  
  7. //Process类有一个StartInfo属性,这个是ProcessStartInfo类,包括了一些属性和方法,下面我们用到了他的几个属性:
  8.  
  9. p.StartInfo.FileName = "cmd.exe"; //设定程序名
  10. p.StartInfo.Arguments = "/c " + command; //设定程式执行参数
  11. p.StartInfo.UseShellExecute = false; //关闭Shell的使用
  12. p.StartInfo.RedirectStandardInput = true; //重定向标准输入
  13. p.StartInfo.RedirectStandardOutput = true; //重定向标准输出
  14. p.StartInfo.RedirectStandardError = true; //重定向错误输出
  15. p.StartInfo.CreateNoWindow = true; //设置不显示窗口
  16.  
  17. p.Start(); //启动
  18.  
  19. //p.StandardInput.WriteLine(command); //也可以用这种方式输入要执行的命令
  20. //p.StandardInput.WriteLine("exit"); //不过要记得加上Exit要不然下一行程式执行的时候会当机
  21.  
  22. return p.StandardOutput.ReadToEnd(); //从输出流取得命令执行结果
  23.  
  24. }
  25.  
  26. //例如实现电脑的关机
  27. using System.Diagnostics;
  28. ProcessStartInfo ps = new ProcessStartInfo();
  29. ps.FileName = "shutdown.exe";
  30. ps.Arguments = "-s -t 1";//关机
  31. // ps.Arguments = "-r -t 1";//重启
  32. Process.Start(ps);

>> winForm启动外部.exe文件并传值

  1. 启动EXE
  2. string arg1 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaa";
  3. string arg2 = "bbbbbbbbbbbbbbbbbbbbbbbbbbbbb";
  4.  
  5. System.Diagnostics.Process p = new System.Diagnostics.Process();
  6. p.StartInfo.WorkingDirectory = Application.StartupPath; //要启动程序路径
  7.  
  8. p.StartInfo.FileName = "EXE_NAME";//需要启动的程序名
  9. p.StartInfo.Arguments = arg1+" "+arg2;//传递的参数
  10. p.Start();//启动
  11. 或者
  12. Process eg = new Process();
  13. ProcessStartInfo startInfo = new ProcessStartInfo(exePath,strArgs);//exePath为要启动程序路径,strArgs为要传递的参数
  14. eg.StartInfo = startInfo;
  15. eg.StartInfo.UseShellExecute = false;
  16. eg.Start();
  17.  
  18. 接收参数
  19.  
  20. private void Form1_Load(object sender, EventArgs e)
  21. {
  22. String[] CmdArgs= System.Environment.GetCommandLineArgs();
  23. if (CmdArgs.Length > )
  24. {
  25. //参数0是它本身的路径
  26. String arg0 = CmdArgs[].ToString();
  27. String arg1 = CmdArgs[].ToString();
  28. String arg2 = CmdArgs[].ToString();
  29.  
  30. MessageBox.Show(arg0);//显示这个程序本身路径
  31. MessageBox.Show(arg1);//显示得到的第一个参数
  32. MessageBox.Show(arg2);//显示得到的第二个参数
  33. }
  34. }

>> winForm使用gif图片

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. using System.Diagnostics;
  10.  
  11. namespace DysncPicTest
  12. {
  13. public partial class Form1 : Form
  14. {
  15. private Image m_imgImage = null;
  16. private EventHandler m_evthdlAnimator = null;
  17. public Form1()
  18. {
  19. InitializeComponent();
  20. this.SetStyle(ControlStyles.UserPaint, true);
  21. this.SetStyle(ControlStyles.DoubleBuffer, true);
  22. this.SetStyle(ControlStyles.AllPaintingInWmPaint, true);
  23.  
  24. m_evthdlAnimator = new EventHandler(OnImageAnimate);
  25. Debug.Assert(m_evthdlAnimator != null);
  26. // http://www.cnblogs.com/sosoft/
  27. }
  28.  
  29. protected override void OnPaint(PaintEventArgs e)
  30. {
  31. base.OnPaint(e);
  32. if (m_imgImage != null)
  33. {
  34. UpdateImage();
  35. e.Graphics.DrawImage(m_imgImage, new Rectangle(, , m_imgImage.Width, m_imgImage.Height));
  36. }
  37. }
  38.  
  39. protected override void OnLoad(EventArgs e)
  40. {
  41. base.OnLoad(e);
  42. m_imgImage = Image.FromFile("1.gif"); // 加载测试用的Gif图片
  43. BeginAnimate();
  44. }
  45.  
  46. private void Form1_FormClosing(object sender, FormClosingEventArgs e)
  47. {
  48. if (m_imgImage != null)
  49. {
  50. StopAnimate();
  51. m_imgImage = null;
  52. }
  53. }
  54.  
  55. private void BeginAnimate()
  56. {
  57. if (m_imgImage == null)
  58. return;
  59.  
  60. if (ImageAnimator.CanAnimate(m_imgImage))
  61. {
  62. ImageAnimator.Animate(m_imgImage,m_evthdlAnimator);
  63. }
  64. }
  65.  
  66. private void StopAnimate()
  67. {
  68. if (m_imgImage == null)
  69. return;
  70.  
  71. if (ImageAnimator.CanAnimate(m_imgImage))
  72. {
  73. ImageAnimator.StopAnimate(m_imgImage,m_evthdlAnimator);
  74. }
  75. }
  76.  
  77. private void UpdateImage()
  78. {
  79. if (m_imgImage == null)
  80. return;
  81.  
  82. if (ImageAnimator.CanAnimate(m_imgImage))
  83. {
  84. ImageAnimator.UpdateFrames(m_imgImage);
  85. }
  86. }
  87.  
  88. private void OnImageAnimate(Object sender,EventArgs e)
  89. {
  90. this.Invalidate();
  91. }
  92.  
  93. private void Form1_Load(object sender, EventArgs e)
  94. {
  95.  
  96. }
  97. }
  98. }

>> winForm一种重绘tabControl的方法(带有删除功能)

  1. #region 重绘tabControl
  2. const int CLOSE_SIZE = ;
  3.  
  4. /// <summary>
  5. /// 重绘TabControl方法
  6. /// </summary>
  7. /// <param name="tc">TabControl控件</param>
  8. public static void tabControl_reDraw(TabControl tc)
  9. {
  10. //清空控件
  11. //this.MainTabControl.TabPages.Clear();
  12. //绘制的方式OwnerDrawFixed表示由窗体绘制大小也一样
  13. tc.DrawMode = TabDrawMode.OwnerDrawFixed;
  14. tc.Font = new Font("宋体", );
  15.  
  16. tc.Padding = new System.Drawing.Point(, );
  17.  
  18. tc.DrawItem += new DrawItemEventHandler(tabControl_DrawItem);
  19. tc.MouseDown += new MouseEventHandler(tabControl_MouseDown);
  20.  
  21. tc.TabPages.Clear();//清空所有的page
  22. }
  23. static void tabControl_DrawItem(object sender, DrawItemEventArgs e)
  24. {
  25. try
  26. {
  27.  
  28. TabControl tc = (TabControl)sender;
  29. Rectangle myTabRect = tc.GetTabRect(e.Index);
  30.  
  31. //先添加TabPage属性
  32. e.Graphics.DrawString(tc.TabPages[e.Index].Text,
  33. new Font("宋体", ), SystemBrushes.ControlText, myTabRect.X + , myTabRect.Y + );
  34. //再画一个矩形框
  35. using (Pen p = new Pen(Color.Transparent))
  36. {
  37. myTabRect.Offset(myTabRect.Width - (CLOSE_SIZE + ), );
  38. myTabRect.Width = CLOSE_SIZE;
  39. myTabRect.Height = CLOSE_SIZE;
  40. e.Graphics.DrawRectangle(p, myTabRect);
  41. }
  42.  
  43. //填充矩形框
  44. Color recColor = e.State == DrawItemState.Selected
  45. ? Color.DarkOrange : Color.Transparent;
  46. using (Brush b = new SolidBrush(recColor))
  47. {
  48. e.Graphics.FillRectangle(b, myTabRect);
  49. }
  50.  
  51. //画关闭符号
  52. using (Pen objpen = new Pen(Color.Black, ))
  53. {
  54. //=============================================
  55. //自己画X
  56. //"\"线
  57. Point p1 = new Point(myTabRect.X + , myTabRect.Y + );
  58. Point p2 = new Point(myTabRect.X + myTabRect.Width - , myTabRect.Y + myTabRect.Height - );
  59. e.Graphics.DrawLine(objpen, p1, p2);
  60. //"/"线
  61. Point p3 = new Point(myTabRect.X + , myTabRect.Y + myTabRect.Height - );
  62. Point p4 = new Point(myTabRect.X + myTabRect.Width - , myTabRect.Y + );
  63. e.Graphics.DrawLine(objpen, p3, p4);
  64.  
  65. ////=============================================
  66. //使用图片
  67. // Bitmap bt = new Bitmap(Application.StartupPath+"\\Image\\close.png");
  68. //Bitmap bt = new Bitmap(new Image( Application.StartupPath + "\\Image\\close.png",10,10);
  69.  
  70. //Point p5 = new Point(myTabRect.X, 4);
  71.  
  72. //e.Graphics.DrawImage(bt, p5);
  73. //e.Graphics.DrawString(this.MainTabControl.TabPages[e.Index].Text, this.Font, objpen.Brush, p5);
  74. }
  75. e.Graphics.Dispose();
  76. }
  77. catch (Exception)
  78. { }
  79. }
  80. static void tabControl_MouseDown(object sender, MouseEventArgs e)
  81. {
  82. try
  83. {
  84. TabControl tc = (TabControl)sender;
  85. if (e.Button == MouseButtons.Left)
  86. {
  87. int x = e.X, y = e.Y;
  88. //计算关闭区域
  89. Rectangle myTabRect = tc.GetTabRect(tc.SelectedIndex);
  90.  
  91. myTabRect.Offset(myTabRect.Width - (CLOSE_SIZE + ), );
  92. myTabRect.Width = CLOSE_SIZE;
  93. myTabRect.Height = CLOSE_SIZE;
  94.  
  95. //如果鼠标在区域内就关闭选项卡
  96. bool isClose = x > myTabRect.X && x < myTabRect.Right && y >
  97. myTabRect.Y && y < myTabRect.Bottom;
  98. if (isClose == true)//关闭窗口
  99. {
  100. //tabControl.SelectedTab.Tag
  101. tc.TabPages.Remove(tc.SelectedTab);
  102. //tabPageList.Remove(tc.SelectedTab.Tag.ToString());
  103. //PageListCheck();
  104. }
  105. }
  106. }
  107. catch { }
  108. }
  109. #endregion

>> winForm禁用鼠标滚轮

  1. //实现一,禁用全局的鼠标滚轮
  2. public partial class Form1 : Form, IMessageFilter
  3. {
  4. public Form1()
  5. {
  6. InitializeComponent();
  7. }
  8.  
  9. #region IMessageFilter 成员
  10.  
  11. public bool PreFilterMessage(ref Message m)
  12. {
  13. if (m.Msg == )
  14. {
  15. return true;
  16. }
  17. else
  18. {
  19. return false;
  20. }
  21. }
  22.  
  23. #endregion
  24.  
  25. private void Form1_Load(object sender, EventArgs e)
  26. {
  27. Application.AddMessageFilter(this);
  28. }
  29. }
  30.  
  31. //实现二,禁用ComBoBox的鼠标滚轮
  32. class comBoBoxEx : System.Windows.Forms.ComboBox
  33. {
  34. public bool isWheel = false;
  35. public string strComB = null;
  36. protected override void OnMouseWheel(System.Windows.Forms.MouseEventArgs e)
  37. {
  38. strComB = Text;
  39. isWheel = true;
  40. }
  41.  
  42. protected override void OnMouseDown(System.Windows.Forms.MouseEventArgs e)
  43. {
  44. base.OnMouseDown(e);
  45. isWheel = false;
  46.  
  47. }
  48.  
  49. protected override void OnSelectedIndexChanged(EventArgs e)
  50. {
  51.  
  52. base.OnSelectedIndexChanged(e);
  53. if (isWheel)
  54. {
  55. Text = strComB;
  56. }
  57. }
  58. }
  59. //实现三,禁用单个控件的鼠标滚轮(未验证)
  60. private void Form1_Load(object sender, EventArgs e)
  61. {
  62. numericUpDown1.MouseWheel += new MouseEventHandler(numericUpDown1_MouseWheel);
  63. }
  64.  
  65. //取消滚轮事件
  66. void numericUpDown1_MouseWheel(object sender, MouseEventArgs e)
  67. {
  68. HandledMouseEventArgs h = e as HandledMouseEventArgs;
  69. if (h != null)
  70. {
  71. h.Handled = true;
  72. }
  73. }

Winform常用操作的更多相关文章

  1. Winform常用开发模式第一篇

    Winform常用开发模式第一篇 上一篇博客最后我提到“异步编程模型”(APM),之后本来打算整理一下这方面的材料然后总结一下写篇文章与诸位分享,后来在整理的过程中不断的延伸不断地扩展,发现完全偏离了 ...

  2. 【三】用Markdown写blog的常用操作

    本系列有五篇:分别是 [一]Ubuntu14.04+Jekyll+Github Pages搭建静态博客:主要是安装方面 [二]jekyll 的使用 :主要是jekyll的配置 [三]Markdown+ ...

  3. php模拟数据库常用操作效果

    test.php <?php header("Content-type:text/html;charset='utf8'"); error_reporting(E_ALL); ...

  4. Mac OS X常用操作入门指南

    前两天入手一个Macbook air,在装软件过程中摸索了一些基本操作,现就常用操作进行总结, 1关于触控板: 按下(不区分左右)            =鼠标左键 control+按下        ...

  5. mysql常用操作语句

    mysql常用操作语句 1.mysql -u root -p   2.mysql -h localhost -u root -p database_name 2.列出数据库: 1.show datab ...

  6. nodejs配置及cmd常用操作

    一.cmd常用操作 1.返回根目录cd\ 2.返回上层目录cd .. 3.查找当前目录下的所有文件dir 4.查找下层目录cd window 二.nodejs配置 Node.js安装包及源码下载地址为 ...

  7. Oracle常用操作——创建表空间、临时表空间、创建表分区、创建索引、锁表处理

    摘要:Oracle数据库的库表常用操作:创建与添加表空间.临时表空间.创建表分区.创建索引.锁表处理 1.表空间 ■  详细查看表空间使用状况,包括总大小,使用空间,使用率,剩余空间 --详细查看表空 ...

  8. python 异常处理、文件常用操作

    异常处理 http://www.jb51.net/article/95033.htm 文件常用操作 http://www.jb51.net/article/92946.htm

  9. byte数据的常用操作函数[转发]

    /// <summary> /// 本类提供了对byte数据的常用操作函数 /// </summary> public class ByteUtil { ','A','B',' ...

随机推荐

  1. CodeForces-455A Boredom

    题目链接 https://vjudge.net/problem/CodeForces-455A 题面 Description Alex doesn't like boredom. That's why ...

  2. LCA(最近公共祖先)——dfs+ST 在线算法

    一.前人种树 博客:浅谈LCA的在线算法ST表 二.沙场练兵 题目:POJ 1330 Nearest Common Ancestors 题解博客:http://www.cnblogs.com/Miss ...

  3. JavaWeb笔记(十二)日志

    日志 日志信息根据用途与记录内容的不同,分为调试日志.运行日志.异常日志等. Java常用记录日志 logger log4j log4j2 logback 其中除了logger使用的概率较小,因此主要 ...

  4. 利用calibre抓取新闻

    Adding your favorite news website calibre has a powerful, flexible and easy-to-use framework for dow ...

  5. windows bat批处理基础命令学习教程(转载)

    一.基础语法: 1.批处理文件是一个“.bat”结尾的文本文件,这个文件的每一行都是一条DOS命令.可以使用任何文本文件编辑工具创建和修改.2.批处理是一种简单的程序,可以用 if 和 goto 来控 ...

  6. pta函数作业

    7-10 设计思路:本题需要判断一个正整数数是否为素数,所谓素数,就是除一和本身外没有其他因数的数.具体判断过程如下:对于一个大于一的整数,从2开始用循环计数i去除此数,若余数不为零,则循环计数i自加 ...

  7. Java相关配置合集

    Java环境变量配置: 1.安装JDK,安装过程中可以自定义安装目录等信息,例如我们选择安装目录为C:\java\jdk1.6.0_08: 2.安装完成后,右击“我的电脑”,点击“属性”: 3.XP选 ...

  8. 2017Nowcoder Girl初赛重现赛

    https://ac.nowcoder.com/acm/contest/315#question A.平方数 代码: #include <bits/stdc++.h> using name ...

  9. 购物车实现思路:cookie + 数据库

    一.加入购物车 1.用户未登录  ==> 将商品id和商品数量存为数组 ==>序列化后存到cookie中 代码: if(!isset($_SESSION['uid'])){ if(empt ...

  10. Aspose.words 替换字符 操作

    var path = Server.MapPath("~/doc/demo.doc"); Document doc = new Document(path); DocumentBu ...