- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个带有 ComboBox 的 Win Forms、C#、.net 4.5 应用程序。用户有一台戴尔触摸屏显示器。当用户使用 Windows 7 时,他们可以触摸下拉框来打开它,并且可以触摸下拉列表中的任何位置来上下滚动。也就是说,他们可以触摸任何项目(比如在空白处)并向上或向下拖动手指,下拉框就会滚动。因为他们已经更新到 Windows 10,所以这不起作用。他们可以单击滚动条并滚动,但很难将手指放在触摸屏上。他们希望能够只降低下拉列表并开始向上拖动列表以滚动。我已经在装有 Windows 7 和 Windows 10 的其他 PC 上测试了该应用程序,但都遇到了同样的问题。我试过在 Windows 中校准触摸屏。我一直在寻找可以添加到代码中的东西,但没有找到任何东西。有什么想法可以让它发挥作用吗?
下面是设置触摸屏的代码:
this.BoxComboBox = new System.Windows.Forms.ComboBox();
//
// BoxComboBox
//
this.BoxComboBox.Anchor = ((System.Windows.Forms.AnchorStyles) (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right)));
this.BoxComboBox.DropDownHeight = 750;
this.BoxComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.BoxComboBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 24F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.BoxComboBox.FormattingEnabled = true;
this.BoxComboBox.IntegralHeight = false;
this.BoxComboBox.Location = new System.Drawing.Point(3, 75);
this.BoxComboBox.Name = "BoxComboBox";
this.BoxComboBox.Size = new System.Drawing.Size(1058, 45);
this.BoxComboBox.TabIndex = 1;
this.BoxComboBox.SelectedIndexChanged += new System.EventHandler(this.BoxComboBox_SelectedIndexChanged);
this.BoxComboBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.BoxBarcodeTextBox_KeyDown);
这是下拉菜单的样子。他们想要做的是触摸任何地方来滚动,就像这样:
最佳答案
经过相当长时间的研究,我发现扩大滚动条宽度是解决这个问题最简单的方法。在 Windows 7 中,外观和个性化中有一个选项允许更改 Windows 滚动条宽度,如下图所示:
此选项在 Windows 10 或 11 中不再可用,您实际上可以使用我在以下链接中发布在我的 GitHub 上的工具:
https://github.com/codewondo/Windows-Scrollbar-Width-Changer
此工具通过修改注册表来更改滚动条。
关于winforms - 如何滚动以在 Windows 窗体应用程序的触摸屏上工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57594844/
对于一个科学实验,我写了一个turtle.py ,它会打开一个 800x480 的窗口并绘制一个缓慢增长的黑点。 turtle.py以 C:\Users\kaza>python C:\Users\ka
我开发了一个 swing 应用程序,但每次运行应用程序时都会打开一个新窗口。我希望如果一个窗口已经打开,则其他窗口不允许打开。 最佳答案 Here是一个 Java 单一应用实例的例子: A singl
有没有办法检测主进程中 Electron 的结构? process.platform 似乎也在 x64 机器上返回 win32,我没有在文档中找到任何获取架构的选项。 最佳答案 你试过 process
public short[] HanningWindow(short[] signal_in ,int pos ,int size) { for (int i= pos; i < pos+si
我有一个具有这些属性的 Electron 窗口: mainWindow = new BrowserWindow({ width: 800, height: 600, title: "Aqu
我有一个 Ubuntu 工作站,我正在尝试引导一个 Windows 节点。 Windows 节点在端口 2222 上打开了 ssh。我一直在关注 http://docs.opscode.com/plu
我是一名优秀的程序员,十分优秀!