- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我认为,我的问题源于这样一个事实,即 TextBox
是 IBindableComponent
,而 ToolStripTextBox
不是。
我正在寻找与 ToolStripTextBox
进行简单绑定(bind),如答案 here 中所述.
public int Unit {get;set;}
private void Form1_Load(object sender, EventArgs e) {
toolStripTextBox1.DataBindings.Add("Text", this, "Unit");
}
目前我正在这样做:
public string SendToEmail {
get{
return _sendToEmail.Text;
}
set {
_sendToEmail.Text = value;
}
}
所以现在我得到了双向同步,但它不是松散耦合的。
问题:是否有一个 .NET 类将一个属性的名称封装在两个类中并监视一个或两个方向的变化,(使用反射?)在它们之间推送值?或者是否有更简单的思考方式?
最佳答案
使用 ToolStripTextBox 的 TextBox 属性进行数据绑定(bind)。这是一个功能齐全的 TextBox 控件,可让您访问所需的 DataBinding。
// this is NOT the same code as above, note the TextBox property in use.
this.toolStripTextBox1.TextBox.DataBindings.Add(...);
关于c# - 如何将字符串属性绑定(bind)到 ToolStripTextBox?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5795211/
在 WinForms 项目中,我知道如何添加 placeholder text到一个普通的文本框。但 ToolStripTextBox 似乎不是常规文本框。其一,它不公开句柄(这是通过 Win API
我非常喜欢 ToolStripProfessionalRenderer 样式,但我不喜欢它呈现 ToolStripTextBox 的方式。在这里,ToolStripSystemRenderer 在 I
我需要延迟检索 ToolStripTextBox 的 TextChanged 事件,以便在停止按键 x 秒后做一些事情.. 我为 TextBox 找到了这个(并且有效)示例。 https://www.
在 C# Winforms 应用程序中,我使用“toolStripTextBox”工具条控件来捕获一些文本,这些文本将用于过滤表单上的其他一些内容。 “toolStripTextBox”是从“tool
我认为,我的问题源于这样一个事实,即 TextBox 是 IBindableComponent,而 ToolStripTextBox 不是。 我正在寻找与 ToolStripTextBox 进行简单绑
我需要检测用户是否将剪贴板中的文本粘贴到 ToolStripTextBox 中。因此,我创建了一个继承自 ToolStripTextBox 的自定义控件。然后我想覆盖 WndProc 以捕获 WM_P
在 C# - WinForms 中,如何检测在 ToolStripTextBox 中按下 Alt + 左键? 最佳答案 protected override bool ProcessCmdKe
我有一个 ToolStripTextBox(它的名称是 SearchBox),我希望在用户键入内容并按下回车键后将它们带到一个 URL。我已经整理好 URL 部分,但我需要知道之后会发生什么 Hand
我是一名优秀的程序员,十分优秀!