■No57333 (kenken さん) に返信
> this->FormBorderStyle = System::Windows::Forms::FormBorderStyle::None;
> でOK。でした。
> もちろん、
> using namespace System::Windows::Forms;
> は書いていますが…。
右辺を FormBorderStyle から書き始めると、それが this->FormBorderStyle の意味で
解釈されてしまうためです。そのため、
this->FormBorderStyle = FormBorderStyle::
まで入力すると、IntelliSense は get / set という入力候補を表示してしまいます。
プロパティ名と列挙型の名前が異なる場合は、
this->StartPosition = System::Windows::Forms::FormStartPosition::CenterParent;
this->StartPosition = FormStartPosition::CenterParent;
StartPosition = System::Windows::Forms::FormStartPosition::CenterParent;
StartPosition = FormStartPosition::CenterParent;
のいずれでも良いのですけれどね。
|