看板 C_and_CPP 關於我們 聯絡資訊
在 .Net Framework 下面我們可以使用 PropertyGrid 產生相關的屬性值, 通常會宣告一個自己定義的 class ,並透過下列語法與 PropertyGrid Bind : userclass user = gcnew userclass(); this->propertyGrid1->SelectedObject = user; // userclass public ref class userclass { private: ...// member public: [ Category("LoginServer"), Description("LoginServer Address") ] property String^ LoginIP { String^ get(){ return m_LoginIP; } void set( String^ ip ){ m_LoginIP = ip; } } ... } 目前的問題是我希望能夠動態產生欄位和值,不知道是否有經驗的人可以分享? 我主要是使用 C++/CLI,感謝大家。 -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 220.135.196.47