C++ Builder 10.2 Tokyo > Ctrl+c, Ctrl+v 키(3 및 22) | TComboBox >Ctrl+c, Ctrl+v에서 선택 항목 복사 붙여넣기
8604 단어 copyshortcutKeyCode우이cppBuilder
RAD Studio 10.2 Tokyo Update 3
처리 개요
참고
h tps : // s t c ゔ ぇ rf ぉ w. 코 m / 쿠에 s 치온 s / 840144 / 호 w - ぢ 사 b
3
와 22
라는 코드를 사용합니다 구현
Unit1.h
//---------------------------------------------------------------------------
#ifndef Unit1H
#define Unit1H
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
#include <Vcl.Forms.hpp>
//---------------------------------------------------------------------------
class TForm1 : public TForm
{
__published: // IDE で管理されるコンポーネント
TComboBox *ComboBox1;
TComboBox *ComboBox2;
void __fastcall ComboBox1KeyPress(TObject *Sender, System::WideChar &Key);
void __fastcall FormShow(TObject *Sender);
private: // ユーザー宣言
signed int m_preserved_key; // Ctrl+C押下時に保存する
public: // ユーザー宣言
__fastcall TForm1(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TForm1 *Form1;
//---------------------------------------------------------------------------
#endif
Unit1.cpp
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "Unit1.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TForm1 *Form1;
//---------------------------------------------------------------------------
__fastcall TForm1::TForm1(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------
/*
Reference: Ctrl+CとCtrl+V
https://stackoverflow.com/questions/840144/how-to-disable-copy-paste-in-tedit
*/
void __fastcall TForm1::ComboBox1KeyPress(TObject *Sender, System::WideChar &Key)
{
if (Key == 3) { // Ctrl+C
// 1. 選択の保持
TComboBox *cbPtr = (TComboBox*)Sender;
m_preserved_key = cbPtr->ItemIndex;
// 2. 入力のキャンセル
Key = 0x00; // C入力としての処理を発生させないため
}
if (Key == 22) { // Ctrl+V
if (m_preserved_key >=-1) {
TComboBox *cbPtr = (TComboBox*)Sender;
cbPtr->ItemIndex = m_preserved_key;
}
}
}
//---------------------------------------------------------------------------
void __fastcall TForm1::FormShow(TObject *Sender)
{
m_preserved_key = -10; // -10: 任意 (-1はコンボボックス非選択という意味があるため、-1以外の値)
// 2つのコンポーネントに同じ処理を設定
ComboBox1->OnKeyPress = ComboBox1KeyPress;
ComboBox2->OnKeyPress = ComboBox1KeyPress;
}
//---------------------------------------------------------------------------
실행 예
선택은 많다
위의 Geordi La Forge 설정을 Ctrl+C, Ctrl+V에서 아래로 복사한 후
Reference
이 문제에 관하여(C++ Builder 10.2 Tokyo > Ctrl+c, Ctrl+v 키(3 및 22) | TComboBox >Ctrl+c, Ctrl+v에서 선택 항목 복사 붙여넣기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/7of9/items/19f2da1036f5c95548da텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)