- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我有一个带有 3 个输入框的表单。您可以右键单击 3 个输入框之一,然后选择“复制”。这应该复制您单击的特定输入框中的文本。
相反,所有 3 个输入框中的文本都会复制到剪贴板。如何仅从用户右键单击的输入框中复制文本?
#! /usr/bin/python
import os
import pypyodbc
import tkinter
from tkinter import ttk
from tkinter import messagebox
from tkinter import BOTH, END, LEFT
import tkinter as tk
class Adder(ttk.Frame):
"""The adders gui and functions."""
def __init__(self, parent, *args, **kwargs):
ttk.Frame.__init__(self, parent, *args, **kwargs)
self.root = parent
self.init_gui()
# Copy and Paste Buttons BEGIN Here
def button1(self):
self.printcopy()
self.copy()
def copy(self, event=None):
self.clipboard_clear()
text = self.first_entry.get() # This is the method I need to work on.
text2 = self.last_entry.get()
text3 = self.lic_entry.get() # All entries are copied
self.clipboard_append(text)
self.clipboard_append(text2)
self.clipboard_append(text3)
def printcopy(self):
print ('Copy!')
def popup(self, event):
self.aMenu.post(event.x_root, event.y_root)
# Copy and Paste Buttons END Here
def init_gui(self):
"""Builds GUI."""
self.root.title('Verify')
self.root.option_add('*tearOff', 'FALSE')
self.grid(column=0, row=0, sticky='nsew') # this starts the entire form
self.outline = tkinter.LabelFrame(self, height=80, width=900) # border frame
self.outline.grid(column=0, row=1, columnspan=5, padx=5, ipady=10, pady=5)
# Input Boxes and Button
self.first_entry = tkinter.Entry(self, width=28) # first input box
self.first_entry.grid(sticky='', column=1, row=1)
self.last_entry = tkinter.Entry(self, width=28) # second input box
self.last_entry.grid(sticky='', column=2, row=1)
self.lic_entry = tkinter.Entry(self, width=28) # third input box
self.lic_entry.grid(sticky='', column=3, row=1)
# Output frame for answer
self.entries = []
self.output0 = tkinter.Entry(self, width=149, justify='center', bd='0', bg='#E0E0E0')
self.output0.grid(column=0, row=6, columnspan=5, padx=1)
self.entries.append(self.output0)
# Copy and Paste
self.aMenu = tk.Menu(self, tearoff=0)
self.aMenu.add_command(label='Copy', command=self.button1)
self.first_entry.bind("<Button-3>", self.popup)
self.last_entry.bind("<Button-3>", self.popup)
self.lic_entry.bind("<Button-3>", self.popup)
self.output0.bind("<Button-3>", self.popup)
self.blank = tkinter.LabelFrame(self, height=5, bd=0,) # blank line
self.blank.grid(row=16,)
if __name__ == '__main__':
root = tkinter.Tk()
Adder(root)
root.resizable(width=False, height=False) # locks window from being resized
root.mainloop()
最佳答案
为了获得您正在寻找的行为,我重新设计了您的代码来完成您想要的。
第一,您不应该像在这里那样导入 tkinter 两次。只需使用 import tkinter as tk
这就能很好地满足您从 tkinter 需要的所有内容。
我们需要通过在 popup
方法中使用 event.widget.focus()
确保焦点位于您右键单击的小部件上,并获取当前的将焦点放在框架 self.outline
内部,然后 get()
该条目的值。
如果您将 copy()
方法更改为:
def copy(self):
self.clipboard_clear()
self.clipboard_append(self.outline.focus_get().get())
并将您的 popup()
方法更改为:
def popup(self, event):
event.widget.focus()
self.aMenu.post(event.x_root, event.y_root)
它应该按照您的需要工作。
看一下下面的代码:
from tkinter import ttk
import tkinter as tk
class Adder(ttk.Frame):
"""The adders gui and functions."""
def __init__(self, parent, *args, **kwargs):
ttk.Frame.__init__(self, parent, *args, **kwargs)
self.root = parent
self.root.title('Verify')
self.root.option_add('*tearOff', 'FALSE')
self.grid(column=0, row=0, sticky='nsew')
self.outline = tk.LabelFrame(self, height=80, width=900)
self.outline.grid(column=0, row=1, columnspan=5, padx=5, ipady=10, pady=5)
self.first_entry = tk.Entry(self, width=28)
self.first_entry.grid(sticky='', column=1, row=1)
self.first_entry.bind("<Button-3>", self.popup)
self.last_entry = tk.Entry(self, width=28)
self.last_entry.grid(sticky='', column=2, row=1)
self.last_entry.bind("<Button-3>", self.popup)
self.lic_entry = tk.Entry(self, width=28)
self.lic_entry.grid(sticky='', column=3, row=1)
self.lic_entry.bind("<Button-3>", self.popup)
self.output0 = tk.Entry(self, width=149, justify='center', bd='0', bg='#E0E0E0')
self.output0.grid(column=0, row=6, columnspan=5, padx=1)
self.output0.bind("<Button-3>", self.popup)
self.aMenu = tk.Menu(self, tearoff=0)
self.aMenu.add_command(label='Copy', command=self.copy)
self.blank = tk.LabelFrame(self, height=5, bd=0) # blank line
self.blank.grid(row=16)
def copy(self):
self.clipboard_clear()
self.clipboard_append(self.outline.focus_get().get())
def popup(self, event):
event.widget.focus()# this moves the focus to the entry field you right click in.
self.aMenu.post(event.x_root, event.y_root)
if __name__ == '__main__':
root = tk.Tk()
Adder(root)
root.resizable(width=False, height=False)
root.mainloop()
关于python - 使用剪贴板时如何检查用户右键单击了哪个输入框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45357954/
当尝试复制到剪贴板时,有什么区别 Clipboard.SetData(DataFormats.Text, ""); 和 Clipboard.SetText(""); 最佳答案 SetText 只是 S
我正在尝试将一个对象复制到 Windows 剪贴板上,然后再次关闭。我的代码是这样的: 复制到剪贴板: Clipboard.Clear(); DataObject newObject = new Da
如何在非静态线程中获取剪贴板文本?我有一个解决方案,但我正在尝试获得最干净/最短的方法。正常调用时结果为空字符串。 最佳答案 我会添加一个辅助方法,它可以在 MTA 主线程中将 Action 作为 S
我正在研究Applescript,将上次复制的内容粘贴到任何当前字段中。它将与VoiceOver一起使用,并且关键代码方式(我所知道的唯一方式)并非始终有效。 tell application
我在这里看到: http://www.pgrs.net/2008/1/11/command-line-clipboard-access Linux 和 osx 中有一种方法可以从命令行复制到剪贴板。所
我正在尝试使用已在浏览器中运行的 Clipboard API,但 PhpStorm 不知道它。 怎样才能让 PhpStorm 识别它?我已在项目设置中将 JavaScript 语言版本设置为 ECMA
Wayland 中有剪贴板 API 之类的东西吗?或者我应该在哪里以编程方式将内容粘贴到剪贴板? 我在 Wayland 上运行 Fedora 24。 如果我觉得有一个剪贴板完全没问题,那么有代码示例(
我最近看到一个针对 ClearCase 的绝妙 hack,其中版本号作为提交的一部分被添加到 Windows 剪贴板。黑客看起来像这样: @rem = ' PERL for Windows NT -
为什么 System.Windows.Clipboard(PresentationCore.dll) 对System.Windows.Thickness (PresentationFramework.
我想用来自 NUnit 测试的文本填充 Forms.Clipboard。 我遇到的第一个问题是剪贴板必须在STA模式下使用。我找到了 the solution (NUnit 2.5.x+) 在方法上设
当我想在我的应用程序中共享基本纯文本时,将其复制到剪贴板的选项不会显示在选择器列表中。我的代码有问题吗?还是我的设备设置有误? String code = getXMLCode(); Intent s
我在LibGDX开发游戏,游戏中有登录界面和注册界面。 HTML 版本的游戏有剪贴板的沙盒环境,意味着: 任何从游戏中复制的东西,都不能粘贴到游戏外&从外部复制的任何内容都不能粘贴到游戏的文本字段中
我有一个奇怪的问题,我相信我可能只需要一些权利来声明使其工作。 我有一些用户可以复制文本的 TextView ,并且可以将其粘贴到应用程序内的另一个文本字段中。但是当用户退出(或暂停)应用程序时,用户
我有一个小程序正在监听图像的剪贴板( Hook )。如果有存储或通过ctrl+c等复制的图像,我的程序会自动将图像粘贴到打开的word文档中。 代码: if (Clipboard.ContainsIm
我正在使用在 Linux Mint 上运行的终端仿真器(准确地说是 MATE),它在 Windows 托管的虚拟机中运行。我通过 ssh 连接到 CentOS Linux 上的 bash shell。
我发现自己在运行脚本并将这些运行的输出复制粘贴到电子邮件或其他一些文档中。有没有办法让复制到剪贴板的步骤成为脚本本身的一部分?我的大部分脚本都是 Perl 或 bat 文件,我在 Windows 上工
如何使用 .NET 框架访问剪贴板内容? 最佳答案 检查 Clipboard类及其 SetText\GetText 方法。 另请参阅本教程: Clipboard Copy and Paste with
我有一些代码要复制和粘贴: void WinClipboard::copy( const std::string& input ) { LPWSTR lptstrCopy;
我想获取当前存储在 Windows 剪贴板中的数据并将其保存在一个变量中,然后将数据放回剪贴板。 现在我正在使用这段代码: object l_oClipBrdData = Clipboard.GetD
引用topic这解释了如何将数据复制到 android 剪贴板,是否可以将视频/音频文件复制到剪贴板。 我假设视频/音频文件以二进制值存储并再次绑定(bind)以将它们作为视频/音频播放。 需要您的建
我是一名优秀的程序员,十分优秀!