using System; using HDL_ON.UI.CSS; using Shared; namespace HDL_ON.UI { /// /// 公共页面 /// 操作结果显示页面 /// public class OperationResultDisPalyPage : Dialog { Dialog bodyView; public OperationResultDisPalyPage() { bodyView = this; } public void LoadPage(bool result) { bodyView.BackgroundColor = CSS_Color.BackgroundColor; string title = result ? Language.StringByID(StringId.SetSuccessfully) : Language.StringByID(StringId.SetSuccessfully); new TopViewDiv(bodyView, MainPage.BaseView, title); } } }