请告诉我,当启用CAPS_LOCK键时,如何在 StatusStrip 中显示。 我试着按照这些例子: one和two但我的应用中没有显示任何内容。 我创建了一个新项目,添加了 StripStatusLabel 元素并试图将任何信息提供给它。 奇怪的是,仅在初始化方法中获得显示:
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
toolStripStatusLabel1.Text = "111";
}
}
但是在其他方法中,它不起作用。
using System.Diagnostics;
namespace WindowsFormsApplication3
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
//toolStripStatusLabel1.Text = "111";
}
public void Form2_KeyDown(object sender, KeyEventArgs e)
{
Debug.Write("123");
toolStripStatusLabel1.Text = "222";
}
}
}
Windows窗体。 NetFramework 4.5 P.S。抱歉愚蠢的问题:)
更新 enter image description here
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Diagnostics;
namespace WindowsFormsApplication3
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
KeyDown += tst;
}
public void TextBoxTest()
{
textBox1.Text = "onetwo";
}
private void tst(object sender, KeyEventArgs e)
{
if ((e.KeyCode & Keys.KeyCode) == Keys.CapsLock)
{
if (Control.IsKeyLocked(Keys.CapsLock))
toolStripStatusLabel1.Text = "Caps";
}
}
}
}
但输出不起作用。 请告诉我,我做错了什么
答案 0 :(得分:0)
//大写锁定
toolStripStatusLabel1.Text=IsKeyLocked(Keys.CapsLock).toString();
// Num Lock
toolStripStatusLabel1.Text=IsKeyLocked(Keys.NumLock).toString();
设置表单的KeyPreview属性以设置为true此代码是表单的key_down事件
在此之前,您不能将文本放在IntializeComponent以外的函数中,因为表单的KeyPreview属性设置为false,请确保它确保使关键事件正常工作
答案 1 :(得分:-1)
我解决了它:
protected override void WndProc(ref Message m)
{
base.WndProc(ref m);
capsStatusLabel.ForeColor = IsKeyLocked(Keys.CapsLock) ? statusStrip1.ForeColor : statusStrip1.BackColor;
numStatusLabel.ForeColor = IsKeyLocked(Keys.NumLock) ? statusStrip1.ForeColor : statusStrip1.BackColor;
}
全部谢谢!