1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| using System;
| using HDL_ON.UI.CSS;
| using Shared;
| namespace HDL_ON.UI
| {
| /// <summary>
| /// 公共页面
| /// 操作结果显示页面
| /// </summary>
| 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);
|
|
|
| }
| }
| }
|
|