Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Tkを使用するperl GUIスクリプトに次のScrolledウィジェットがあります
Scrolled
my $text_area = $main_window->Scrolled("Text", -scrollbars => 'se' , background => 'white')->pack(-expand => 1, -fill => 'both');
私の質問はadd a selection event、ウィジェット内のテキスト(範囲)の一部をクリックして選択する方法です。
add a selection event
仮想イベントをバインドします<<Selection>>。
<<Selection>>
$text_area->bind('<<Selection>>' => sub { ... });