这真烦人。我正在使用标签作为列表项用户控件的一部分,用户可以单击它来选择列表项并双击它以重命名它。但是,如果剪贴板中有名称,双击标签会将其替换为标签文本!
我还检查了应用程序中的其他标签,他们也会在双击时复制到剪贴板。我没有在这个程序中编写任何剪贴板代码,我使用的是标准的.NET标签。
有没有办法禁用此功能?
答案 0 :(得分:7)
我能够使用给出的其他答案的组合来做到这一点。尝试创建此派生类并使用它替换您希望禁用剪贴板功能的任何标签:
Public Class LabelWithOptionalCopyTextOnDoubleClick
Inherits Label
Private Const WM_LBUTTONDCLICK As Integer = &H203
Private clipboardText As String
<DefaultValue(False)> _
<Description("Overrides default behavior of Label to copy label text to clipboard on double click")> _
Public Property CopyTextOnDoubleClick As Boolean
Protected Overrides Sub OnDoubleClick(e As System.EventArgs)
If Not String.IsNullOrEmpty(clipboardText) Then Clipboard.SetData(DataFormats.Text, clipboardText)
clipboardText = Nothing
MyBase.OnDoubleClick(e)
End Sub
Protected Overrides Sub WndProc(ByRef m As System.Windows.Forms.Message)
If Not CopyTextOnDoubleClick Then
If m.Msg = WM_LBUTTONDCLICK Then
Dim d As IDataObject = Clipboard.GetDataObject()
If d.GetDataPresent(DataFormats.Text) Then
clipboardText = d.GetData(DataFormats.Text)
End If
End If
End If
MyBase.WndProc(m)
End Sub
End Class
答案 1 :(得分:3)
我找到了this post。最后的海报似乎已经得到了微软的解决方案,尽管不是一个完美的解决方案。
答案 2 :(得分:3)
当内部文本值为空时,双击标签而不是尝试将文本值复制到剪贴板。这个方法比我认为的其他替代方法更清晰:
using System;
using System.Windows.Forms;
public class LabelNoCopy : Label
{
private string text;
public override string Text
{
get
{
return text;
}
set
{
if (value == null)
{
value = "";
}
if (text != value)
{
text = value;
Refresh();
OnTextChanged(EventArgs.Empty);
}
}
}
}
答案 3 :(得分:2)
TKTS解决方案转换为C#
初学者: (添加新类,构建,转到设计器,从工具箱拖放位置命名为'LabelWithOptionalCopyTextOnDoubleClick')
using System.ComponentModel;
using System.Windows.Forms;
using System;
public class LabelWithOptionalCopyTextOnDoubleClick : Label
{
private const int WM_LBUTTONDCLICK = 0x203;
private string clipboardText;
[DefaultValue(false)]
[Description("Overrides default behavior of Label to copy label text to clipboard on double click")]
public bool CopyTextOnDoubleClick { get; set; }
protected override void OnDoubleClick(EventArgs e)
{
if (!string.IsNullOrEmpty(clipboardText))
Clipboard.SetData(DataFormats.Text, clipboardText);
clipboardText = null;
base.OnDoubleClick(e);
}
protected override void WndProc(ref Message m)
{
if (!CopyTextOnDoubleClick)
{
if (m.Msg == WM_LBUTTONDCLICK)
{
IDataObject d = Clipboard.GetDataObject();
if (d.GetDataPresent(DataFormats.Text))
clipboardText = (string)d.GetData(DataFormats.Text);
}
}
base.WndProc(ref m);
}
}
答案 4 :(得分:1)
我的解决方案(非常难看,但似乎有效)是单击一次将剪贴板文本复制到局部变量,如果剪贴板与局部变量不同,则双击恢复它。显然,双击的前提是第一次单击,这就是它工作的原因。
我要解决这个问题,因为我喜欢更清洁的方法!
答案 5 :(得分:0)
我尝试了上面发布的解决方案,但它们对我不起作用。 =(根据这个基本想法,虽然(由于上面),我到了这里,这似乎工作(也有点干净)。(在Windows Server 2012 R2上运行)
public class MyLabel : System.Windows.Forms.Label
{
private const int WM_LBUTTONDBLCLK = 0x203;
protected override void WndProc(ref Message m)
{
if (m.Msg == WM_LBUTTONDBLCLK)
{
string sSaved = Clipboard.GetText();
System.Drawing.Image iSaved = Clipboard.GetImage();
base.WndProc(ref m);
if (iSaved != null) Clipboard.SetImage(iSaved);
if (!string.IsNullOrEmpty(sSaved)) Clipboard.SetText(sSaved);
}
else
{
base.WndProc(ref m);
}
}
}
必须投入一些额外的努力来保存像复制的Excel字段之类的东西,尽管原理是相同的。如上所述,您可以在剪贴板上迭代所有可用格式(或您关注的格式),并将这些值填充到Dictionary对象中,然后在之后恢复它们。在这种情况下,文字和图片适合我。
关于此主题的一个值得(和警示)的链接在这里: How do I backup and restore the system clipboard in C#?