예제 #1
0
파일: TextBox.cs 프로젝트: huqiang0204/HGUI
 public override Core.HGUI.UIElement GetUIData()
 {
     if (Content == null)
     {
         Content = new Core.HGUI.TextBox();
     }
     return(Content);
 }
예제 #2
0
파일: TextBox.cs 프로젝트: huqiang0204/HGUI
 public void Awake()
 {
     if (Content == null)
     {
         Content = new Core.HGUI.TextBox();
     }
     ContextID = Content.GetInstanceID();
 }