C#のどのような構成のapp.configを取り扱うカスタムキーボードイベントを追加する方法に|?CSHARPキープレスイベントのチュートリアルとapp.configを

この記事では、最初の個人的なブログ登場https://kezunlin.me/post/9f24ebb5/最新の内容に、ようこそ!

キープレスイベントのチュートリアルとapp.configをCSHARP

ガイド

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
        }

テキストボックス

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>

使用法

参照 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"];
        }

参照

歴史

  • 20190919:作成しました。

著作権

  • 投稿者:kezunlin
  • ポストリンク:https://kezunlin.me/post/9f24ebb5/
  • 著作権:別途明記しない限り、このブログのすべての記事はCC BY-NC-SA 3.0の下でライセンスされています。

おすすめ

転載: www.cnblogs.com/kezunlin/p/11993129.html