12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- /** This is an automatically generated class by FairyGUI. Please do not modify it. **/
- using FairyGUI;
- namespace UI.Poem
- {
- public partial class UI_ComScroll
- {
- public GComponent target;
- public GList m_listRecommend;
- public GList m_listRecommend1;
- public UI_ComPullHead m_comHeader;
- public UI_ComPullFooter m_comFooter;
- public const string URL = "ui://iyz778gkr9ri139";
- public const string PACKAGE_NAME = "Poem";
- public const string RES_NAME = "ComScroll";
- private static UI_ComScroll _proxy;
- public static UI_ComScroll Create(GObject gObject = null)
- {
- var ui = new UI_ComScroll();
- if(gObject == null)
- ui.target = (GComponent)UIPackage.CreateObject(PACKAGE_NAME, RES_NAME);
- else
- ui.target = (GComponent)gObject;
- ui.Init(ui.target);
- return ui;
- }
- public static UI_ComScroll Proxy(GObject gObject = null)
- {
- if(_proxy == null)
- {
- _proxy = new UI_ComScroll();
- }
- var ui = _proxy;
- if(gObject == null)
- ui.target = (GComponent)UIPackage.CreateObject(PACKAGE_NAME, RES_NAME);
- else
- ui.target = (GComponent)gObject;
- ui.Init(ui.target);
- return ui;
- }
- public static void ProxyEnd()
- {
- if (_proxy != null)
- {
- _proxy.Dispose();
- }
- }
- public static void ClearProxy()
- {
- ProxyEnd();
- _proxy = null;
- }
- private void Init(GComponent comp)
- {
- m_listRecommend = (GList)comp.GetChild("listRecommend");
- m_listRecommend1 = (GList)comp.GetChild("listRecommend1");
- m_comHeader = (UI_ComPullHead)UI_ComPullHead.Create(comp.GetChild("comHeader"));
- m_comFooter = (UI_ComPullFooter)UI_ComPullFooter.Create(comp.GetChild("comFooter"));
- }
- public void Dispose(bool disposeTarget = false)
- {
- m_listRecommend = null;
- m_listRecommend1 = null;
- m_comHeader.Dispose();
- m_comHeader = null;
- m_comFooter.Dispose();
- m_comFooter = null;
- if(disposeTarget && target != null)
- {
- target.RemoveFromParent();
- target.Dispose();
- }
- target = null;
- }
- }
- }
|