http://blog.csdn.net/config_man/article/details/25578767

    1. #region 调用timer控件实时查询开关机时间
    2. private void timer1_Tick(object sender, EventArgs e)
    3. {
    4. string sql = "SELECT startTime,endTime,AMTusername,AMTpassword,AMTip FROM AmtTiming at, AmtComputer ac WHERE at.cid = ac.id";
    5. List<TimingBean> list = new Database().getRS(sql);
    6. if (list != null && list.Count > 0)
    7. {
    8. foreach (TimingBean tb in list)
    9. {
    10. string startTime = tb.StartTime;
    11. string endTime = tb.EndTime;
    12. string AMTusername = tb.AMTUsername;
    13. string AMTpassword = tb.AMTPassword;
    14. string AMTip = tb.AMTIp;
    15. string now = DateTime.Now.ToShortTimeString();
    16. if (startTime == now)
    17. {
    18. Action<string, string, string, bool> action = new Action<string, string, string, bool>(StartOrShutDown);
    19. action.BeginInvoke(AMTusername, AMTpassword, AMTip, true, null, null);
    20. }
    21. else if (endTime == now)
    22. {
    23. Action<string, string, string, bool> action = new Action<string, string, string, bool>(StartOrShutDown);
    24. action.BeginInvoke(AMTusername, AMTpassword, AMTip, false, null, null);
    25. }
    26. }
    27. }
    28. }
    29. private void StartOrShutDown(string user, string pass, string ip, bool isStart)
    30. {
    31. AmtRemoteAControl amtControl = new AmtRemoteAControl();
    32. if (isStart)
    33. {
    34. //如果开机不成功,则让其再执行一次
    35. try
    36. {
    37. amtControl.SendPowerOnCmd(ip, user, pass);
    38. }
    39. catch
    40. {
    41. try
    42. {
    43. amtControl.SendPowerOnCmd(ip, user, pass);
    44. }
    45. catch (Exception e)
    46. {
    47. MessageBox.Show("终端设备:" + ip + "自动开机失败。异常信息:" + e.Message);
    48. }
    49. }
    50. }
    51. else
    52. {
    53. //如果关机不成功,则让其再执行一次
    54. try
    55. {
    56. amtControl.SendPowerOffCmd(ip, user, pass);
    57. }
    58. catch
    59. {
    60. try
    61. {
    62. amtControl.SendPowerOffCmd(ip, user, pass);
    63. }
    64. catch (Exception e)
    65. {
    66. MessageBox.Show("终端设备:" + ip + "自动关机失败。异常信息:" + e.Message);
    67. }
    68. }
    69. }
    70. }
    71. #endregion
    72. #region 开关机、重启 "查询按钮"
    73. bool has = false;
    74. private void button1_Click(object sender, EventArgs e)
    75. {
    76. //获得省份索引和某个市的文本
    77. int index = this.comboBox1.SelectedIndex;
    78. if (0 == index)
    79. {
    80. MessageBox.Show("请选择区域!"); return;
    81. }
    82. else
    83. {
    84. #region 获取选择的区域
    85. this.buttonStart.Enabled = false;
    86. this.buttonShutdown.Enabled = false;
    87. this.buttonReStart.Enabled = false;
    88. string place = this.comboBox1.Text;              //省
    89. int city_index = this.comboBox2.SelectedIndex;//市
    90. string county = this.comboBox3.Text;        //区县
    91. //如果城市有选择
    92. if (city_index != 0)
    93. {
    94. place = place + this.comboBox2.Text;
    95. }
    96. //如果区县有选择
    97. if ((null != county) && (!((string.Empty).Equals(county))) && (!"--请选择--".Equals(county)))
    98. {
    99. place = place + county;
    100. }
    101. #endregion
    102. try
    103. {
    104. #region 将查到的设备信息绑定到数据表格
    105. //将查到的设备信息绑定到数据表格
    106. //string sql = "SELECT '' as '选择',cp.en '设备编号',cp.ip '设备IP',cp.place '设备地址', cp.AMTusername '用户名',cp.AMTpassword '密码',cp.AMTip 'IP',cp.id '主键',cp.status '状态' FROM AmtComputer cp WHERE cp.place like '%" + place + "%'";
    107. string sql = "SELECT cp.en '设备编号',cp.ip '设备IP',cp.place '设备地址', cp.AMTusername '用户名',cp.AMTpassword '密码',cp.AMTip 'IP',cp.id '主键',cp.status '状态' FROM AmtComputer cp WHERE cp.place like '%" + place + "%'";
    108. Database db = new Database();
    109. DataSet ds = db.getDS(new DataSet(), sql);
    110. DataTable table = ds.Tables["data"];
    111. this.bindingSource1.DataSource = table;
    112. this.dataGridView1.DataSource = this.bindingSource1;
    113. if(!has)
    114. {
    115. //添加复选框
    116. DataGridViewCheckBoxColumn box = new DataGridViewCheckBoxColumn();
    117. box.HeaderText = "选择";
    118. box.Name = "选择";
    119. this.dataGridView1.Columns.Insert(0, box);
    120. has = true;
    121. }
    122. //设置部分列为不可见状态
    123. this.dataGridView1.Columns["用户名"].Visible = false;//AMT用户名
    124. this.dataGridView1.Columns["密码"].Visible = false;//AMT密码
    125. this.dataGridView1.Columns["IP"].Visible = false;//AMT设备ip
    126. this.dataGridView1.Columns["主键"].Visible = false;//主键
    127. this.dataGridView1.Columns["选择"].Width = 60;//复选框
    128. this.dataGridView1.Columns["设备编号"].Width = 100;//设备编号
    129. this.dataGridView1.Columns["设备IP"].Width = 140;//设备IP
    130. this.dataGridView1.Columns["设备地址"].Width = 160;//设备地址
    131. this.dataGridView1.Columns["状态"].Width = 180;//状态
    132. #endregion
    133. //this.labelState.Text = "正在获取设备状态,请稍后...";
    134. //this.Refresh();
    135. int count = table.Rows.Count;
    136. for (int i = 0; i < count; i++)
    137. {
    138. string username = table.Rows[i]["用户名"].ToString(); //amt用户名
    139. string password = table.Rows[i]["密码"].ToString(); //amt密码
    140. string host = table.Rows[i]["IP"].ToString();     //amtIP地址
    141. this.dataGridView1.Rows[i].Cells["状态"].Value = "正在获取终端状态...";
    142. this.dataGridView1.Rows[i].Cells["状态"].Style.ForeColor = Color.Red;
    143. this.dataGridView1.Rows[i].Cells["状态"].Style.Font = new Font("宋体", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
    144. Func<int, string, string, string, string> func = new Func<int, string, string, string, string>(getPowerState);
    145. func.BeginInvoke(i, username, password, host,
    146. (result) =>
    147. {
    148. string state = func.EndInvoke(result);
    149. this.BeginInvoke(new Action<string>(setStateValue), state);
    150. }, null);
    151. }
    152. }
    153. catch (Exception ee) { MessageBox.Show(ee.Message); }
    154. }
    155. }
    156. private void setStateValue(string state)
    157. {
    158. string[] array = state.Split(',');
    159. this.dataGridView1.Rows[Convert.ToInt16(array[0])].Cells["状态"].Value = array[1];
    160. this.buttonStart.Enabled = true;
    161. this.buttonShutdown.Enabled = true;
    162. this.buttonReStart.Enabled = true;
    163. }
    164. #endregion
    165. #region 获取amt设备的当前电源状态
    166. private string getPowerState(int index,string username, string password, string host)
    167. {
    168. ConnectionInfo info = new ConnectionInfo(host, username, password, false,
    169. string.Empty, ConnectionInfo.AuthMethod.Digest,
    170. null, null);
    171. DotNetWSManClient wsman = new DotNetWSManClient(info);
    172. RemoteControlApi api = new RemoteControlApi(wsman);
    173. try
    174. {
    175. CIM_AssociatedPowerManagementService service = api.GetCurrentPowerState(true);
    176. ushort state = service.PowerState;
    177. if (state == 2)
    178. {
    179. return index + ",开机";
    180. }
    181. else if (state == 8)
    182. {
    183. return index + ",关机";
    184. }
    185. }
    186. catch
    187. {
    188. try
    189. {
    190. CIM_AssociatedPowerManagementService service = api.GetCurrentPowerState(false);
    191. ushort state = service.PowerState;
    192. if (state == 2)
    193. {
    194. return index + ",开机";
    195. }
    196. else if (state == 8)
    197. {
    198. return index + ",关机";
    199. }
    200. }
    201. catch (Exception e2)
    202. {
    203. return index + "," + e2.Message;
    204. }
    205. }
    206. return index + ",未知";
    207. }
    208. #endregion

Winform异步解决窗体耗时操作(Action专门用于无返回值,Func专门用于有返回值)的更多相关文章

  1. winform 开发中 把耗时操作 封装起来 异步执行(.net 4.0)

    .先定义一个 BackgroundTask.cs 代码如下: public class BackgroundTask { private static WaitDialogForm LoadingDl ...

  2. 事件异步(EAP)使用事件异步处理一些耗时操作

    比如需要下载一些比较大的文件,如果使用会UI卡顿,使用异步可以节省一些时间 下面是一些例子: using System; using System.Collections.Generic; using ...

  3. Winform 界面执行耗时操作--UI卡顿假死问题

    UI卡顿假死问题 误区1:使用不同的线程操作UI控件和耗时操作(即,跨线程操作UI控件CheckForIllegalCrossThreadCalls = false;), 注意:此处只是为了记录... ...

  4. 异步委托(APM)使用Func异步操作,处理耗时操作

    使用委托进行异步操作,处理一些耗时操作,防止主线程阻塞 使用例子: using System; using System.Collections.Generic; using System.Linq; ...

  5. C# winform解决解决窗体第一次设置为最大化后,点击最大化按钮窗体无法居中问题

    public frmMain() { InitializeComponent(); //解决窗体第一次设置为最大化后,点击最大化按钮窗体无法居中问题 int x = Convert.ToInt32(( ...

  6. 谈.Net委托与线程——解决窗体假死

    转自:http://www.cnblogs.com/smartls/archive/2011/04/08/2008981.html#2457370   引言 在之前的<创建无阻塞的异步调用> ...

  7. C# 解决窗体假死的状态

    异步调用是CLR为开发者提供的一种重要的编程手段,它也是构建高性能.可伸缩应用程序的关键.在多核CPU越来越普及的今天,异步编程允许使用非常少的线程执行很多操作.我们通常使用异步完成许多计算型.IO型 ...

  8. ASP.NET服务器端执行耗时操作的工作记录

    公司之前有这样一个业务需求: 一名同事做出文件a0和b0,然后将a0加密为a1.b0加密为b1:再将文件a0.a1.b0和b1上传至服务器M:同时要将服务器N上的数据表添加一条记录,该记录的ID就是前 ...

  9. (二十三)c#Winform自定义控件-等待窗体

    前提 入行已经7,8年了,一直想做一套漂亮点的自定义控件,于是就有了本系列文章. 开源地址:https://gitee.com/kwwwvagaa/net_winform_custom_control ...

随机推荐

  1. JavaScript 基础,登录验证

    1.<script></script>的三种用法: a.放在<body>中 b.放在<head>中 c.放在外部JS文件中 <!DOCTYPE h ...

  2. tensorflow学习4-过拟合-over-fitting

    过拟合: 真实的应用中,并不是让模型尽量模拟训练数据的行为,而是希望训练数据对未知做出判断. 模型过于复杂后,模型会积极每一个噪声的部分,而不是学习数据中的通用 趋势.当一个模型的参数比训练数据还要多 ...

  3. win7 怎么设置开机直接进入桌面? netplwiz 命令

    电脑没设置密码,开机如何跳过帐户已锁定的界面,直接进入桌面呢? 1.单击[运行],或按快捷键:win+r2.输入命令:netplwiz 单击[确定]3.单击你的登录账户4.去掉[要使用本机,用户名必须 ...

  4. springboot打包部署到tomcat

    一. springboot打成war包: 1. 首先查看是否为war 2. File----->ProjectStruture,选择Artifacts,中部点击“+”号 3. 按图中标记进行选择 ...

  5. 怎样从外网访问内网Node.js?

    本地安装了一个Node.js,只能在局域网内访问,怎样从外网也能访问到本地的Node.js呢?本文将介绍具体的实现步骤. 1. 准备工作 1.1 安装并启动Node.js 默认安装的Node.js端口 ...

  6. N-Gram的基本原理

    1.N-Gram的介绍 N-Gram是基于一个假设:第n个词出现与前n-1个词相关,而与其他任何词不相关(这也是隐马尔可夫当中的假设).整个句子出现的概率就等于各个词出现的概率乘积.各个词的概率可以通 ...

  7. winform跨线程访问控件

    首先说下,.net 2.0以后加强了安全机制,不允许在winform中直接跨线程访问控件的属性.所以除了控件所在的线程外的线程调用会抛异常 (Cross-thread operation not va ...

  8. ads查询结果中文显示方框问题

    刚安装aqua data studio查询结果中文会变成小方框 选择File -->Options 找到General  -->Appearance,把Editor Font , Text ...

  9. eclipse 的版本及下载地址

    eclipse 的各个版本号: 版本号 代号 代号名 发布日期 Eclipse 3.1 IO 木卫一,伊奥 2005 Eclipse 3.2 Callisto 木卫四,卡里斯托 2006 Eclips ...

  10. 在linux中安装memcache服务器

    挂载光盘   mkdir -p /media/cdrom   mount /dev/cdrom /media/cdrom   设置yum cd /etc/yum.repos.d/ mv CentOS- ...