using FairyGUI; using UI.Login; namespace GFGGame { public class SystemNoticeView : BaseWindow { private UI_NoticeUI _ui; public override void Dispose() { base.Dispose(); } protected override void OnInit() { base.OnInit(); _ui = UI_NoticeUI.Create(); this.viewCom = _ui.target; this.viewCom.Center(); this.modal = true; _ui.m_txtTitle.text = "公 告"; _ui.m_txtContent.text = "玩命开发中,敬请期待!"; } protected override void OnShown() { base.OnShown(); } protected override void OnHide() { base.OnHide(); } } }