mirror of
https://github.com/rvtr/TwlToolsRED.git
synced 2025-10-31 06:41:18 -04:00
北米リージョンのときにDSStationを選択できないようにした。
git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlToolsRED@428 7061adef-622a-194b-ae81-725974e89856
This commit is contained in:
parent
b1894c4bde
commit
7c92719095
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -4745,6 +4745,16 @@ private: System::Windows::Forms::TextBox^ tboxPurposeInError;
|
||||
this->changePurposeForms(this->rPurposeOther); // わざわざこれを選ぶには特別な理由があるだろうから"その他"にチェックをつけかえる
|
||||
}
|
||||
}
|
||||
// 英語版では"Touch!Try!DS"をなくす
|
||||
if( this->hSrl->IsRegionAmerica )
|
||||
{
|
||||
this->rPurposeDSStation->Enabled = false;
|
||||
if( this->rPurposeDSStation->Checked )
|
||||
{
|
||||
this->changePurposeForms(this->rPurposeOther);
|
||||
}
|
||||
}
|
||||
|
||||
} //maskPurposeForms()
|
||||
|
||||
private:
|
||||
@ -5753,18 +5763,36 @@ private: System::Windows::Forms::TextBox^ tboxPurposeInError;
|
||||
this->changeUnnecessaryRatingForms(false); // 一度コンボボックスがenableになるので再設定
|
||||
|
||||
// リージョン変更によって表示する「用途」を変更する
|
||||
if( this->combRegion->SelectedIndex == 0 ) // 日本リージョンの場合には「店頭体験版(単独型)」を非表示にする
|
||||
|
||||
// 日本リージョンの場合には"店頭体験版(単独型)"を非表示にする
|
||||
if( this->combRegion->SelectedIndex == 0 )
|
||||
{
|
||||
this->rPurposeCardKiosk->Enabled = false;
|
||||
if( this->rPurposeCardKiosk->Checked )
|
||||
{
|
||||
this->changePurposeForms( this->rPurposeOther );
|
||||
}
|
||||
this->rPurposeCardKiosk->Enabled = false;
|
||||
}
|
||||
else
|
||||
{
|
||||
this->rPurposeCardKiosk->Enabled = true;
|
||||
}
|
||||
|
||||
// 英語版では"Touch!Try!DS"をなくす
|
||||
if( (this->combRegion->SelectedIndex == 1) ||
|
||||
(this->combRegion->SelectedIndex == 5) ||
|
||||
(this->combRegion->SelectedIndex == 6) )
|
||||
{
|
||||
this->rPurposeDSStation->Enabled = false;
|
||||
if( this->rPurposeDSStation->Checked )
|
||||
{
|
||||
this->changePurposeForms(this->rPurposeOther);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
this->rPurposeDSStation->Enabled = true;
|
||||
}
|
||||
}
|
||||
private:
|
||||
// レーティング表示不要が選択されたときにレーティングを選択不可にする
|
||||
|
||||
Binary file not shown.
Loading…
Reference in New Issue
Block a user