| 1234567891011121314151617181920212223242526272829303132333435363738394041 | /* * 使用示例:    AlertSystem.Show("喜欢吗!")    .SetTitle("温馨提示")    .SetLeftButton(true, "喜欢", (object data1) =>    {            })    .SetRightButton(true, "不喜欢")    .SetData("aa"); */namespace GFGGame{    public class Alert    {        private static AlertWindow _alertWindow;        public static IAlert Show(string message)        {            if (_alertWindow == null)            {                _alertWindow = new AlertWindow();            }            _alertWindow.Reset();            _alertWindow.SetMessage(message);            _alertWindow.Show();            return _alertWindow;        }        public static void hide()        {            if (_alertWindow != null)            {                _alertWindow.Hide();            }        }    }}
 |