|
@@ -15,6 +15,7 @@ namespace UI.DressUp
|
|
|
public GButton m_btnChoose;
|
|
|
public GButton m_btnUp;
|
|
|
public GButton m_btnDown;
|
|
|
+ public GButton m_btnDelete;
|
|
|
public GButton m_btnGalleryJoin;
|
|
|
public GTextField m_txtCount;
|
|
|
public UI_ComItemList m_ComSelectRes;
|
|
@@ -73,6 +74,7 @@ namespace UI.DressUp
|
|
|
m_btnChoose = (GButton)comp.GetChild("btnChoose");
|
|
|
m_btnUp = (GButton)comp.GetChild("btnUp");
|
|
|
m_btnDown = (GButton)comp.GetChild("btnDown");
|
|
|
+ m_btnDelete = (GButton)comp.GetChild("btnDelete");
|
|
|
m_btnGalleryJoin = (GButton)comp.GetChild("btnGalleryJoin");
|
|
|
m_txtCount = (GTextField)comp.GetChild("txtCount");
|
|
|
m_ComSelectRes = (UI_ComItemList)UI_ComItemList.Create(comp.GetChild("ComSelectRes"));
|
|
@@ -88,6 +90,7 @@ namespace UI.DressUp
|
|
|
m_btnChoose = null;
|
|
|
m_btnUp = null;
|
|
|
m_btnDown = null;
|
|
|
+ m_btnDelete = null;
|
|
|
m_btnGalleryJoin = null;
|
|
|
m_txtCount = null;
|
|
|
m_ComSelectRes.Dispose();
|