码迷,mamicode.com
首页 > 移动开发 > 详细

C# 如何添加自定义键盘处理事件 如何配置app.config ? | csharp key press event tutorial and app.config

时间:2019-12-06 10:04:56      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:res   value   orm   copy   pos   var   ide   json   data   

本文首发于个人博客https://kezunlin.me/post/9f24ebb5/,欢迎阅读最新内容!

csharp key press event tutorial and app.config

Guide

MainForm

 protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
        {
            //System.Console.WriteLine("ProcessCmdKey " + cur_image_id);

            //capture up arrow key
            if (keyData == Keys.Left)
            {
                //this.button_prev.PerformClick();
                button_prev_click();

                return true;
            }
            else if (keyData == Keys.Right)
            {
                //System.Console.WriteLine("Enter "+cur_image_id);

                //this.button_ok.PerformClick();
                button_ok_click();

                return true;
            }
            
            return base.ProcessCmdKey(ref msg, keyData); // trigger 2 button_ok_click
        }

TextBox

private void textBox_index_KeyDown(object sender, KeyEventArgs e)
        {
            if (e.KeyCode == Keys.Enter)
            {
                //enter key is down
                button_goto_click();
            }
        }

app.config

app.config.xml

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <startup> 
        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
    </startup>
    <appSettings>
      <add key="image_extension" value="png" />
      <add key="output_filepath" value="./output.json" />
    </appSettings>
</configuration>

usage

reference System.Configuration.dll

using System.Configuration;

private void init_config()
        {
            var appSettings = System.Configuration.ConfigurationManager.AppSettings;
            string image_ext = "*."+ appSettings["image_extension"];
            string output_filepath = appSettings["output_filepath"];
        }

Reference

History

  • 20190919: created.

Copyright

C# 如何添加自定义键盘处理事件 如何配置app.config ? | csharp key press event tutorial and app.config

标签:res   value   orm   copy   pos   var   ide   json   data   

原文地址:https://www.cnblogs.com/kezunlin/p/11993129.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!