C++ Builder XE4, 10.2 Tokyo > TStringGrid > 셀 위치 변경 > 속성 Row 및 Col 설정
3119 단어 cppBuilder#migratedTStringGrid
C++ Builder XE4
RAD Studio 10.2 Tokyo Update 2 (追記: 2017/12/28)
TStringGrid에서 셀의 위치를 변경하고 싶습니다.
참고 ht tp // // 흠 m.ぁざる s. f Repa s 또는 l. rg / 어서 x. php? 토피 c = 9413.0
속성 Row와 Col을 설정하는 것 같습니다.
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)
{
}
//---------------------------------------------------------------------------
void __fastcall TForm1::B_homeClick(TObject *Sender)
{
StringGrid1->Row = 1;
StringGrid1->Col = 1;
}
//---------------------------------------------------------------------------
void __fastcall TForm1::B_downClick(TObject *Sender)
{
StringGrid1->Row += 1;
}
//---------------------------------------------------------------------------
Reference
이 문제에 관하여(C++ Builder XE4, 10.2 Tokyo > TStringGrid > 셀 위치 변경 > 속성 Row 및 Col 설정), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/7of9/items/01c1ad91522d9e86d7d1텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)