InterviewSolution
Saved Bookmarks
| 1. |
How To Access The New Ui Map Controls From Another Cs File? |
|
Answer» Using Get and Set properties we can ACCESS the NEW UI Map controls in ANOTHER CS files. Below the SAMPLE code. public UIMap UIMap { get { if ((this.map == null)) { this.map = new UIMap(); } return this.map; } } private UIMap map; Using Get and Set properties we can access the new UI Map controls in another cs files. Below the sample code. public UIMap UIMap { get { if ((this.map == null)) { this.map = new UIMap(); } return this.map; } } private UIMap map; |
|