You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <remarks>To ensure functionality, when this value is set, <see cref="ShowMaximizeButton"/>, <seealso cref="ShowResize"/>, and <seealso cref="IsDraggable"/> are not available</remarks>
/// <remarks>To ensure functionality, when this value is set to true, <seealso cref="ShowResize"/> and <seealso cref="IsDraggable"/> are not available</remarks>
43
43
publicboolShowMaximizeButton{get;set;}
44
44
45
45
/// <summary>
46
-
/// 获得/设置 是否垂直居中 默认为 true
46
+
/// Gets or sets whether the dialog is vertically centered, default is true
47
47
/// </summary>
48
48
publicboolIsCentered{get;set;}=true;
49
49
50
50
/// <summary>
51
-
/// 获得/设置 是否弹窗正文超长时滚动 默认为 false
51
+
/// Gets or sets whether the dialog content scrolls when it is too long, default is false
52
52
/// </summary>
53
53
publicboolIsScrolling{get;set;}=false;
54
54
55
55
/// <summary>
56
-
/// 获得/设置 是否显示调整大小按钮 默认为 false
56
+
/// Gets or sets whether to show the resize button, default is false
57
57
/// </summary>
58
58
publicboolShowResize{get;set;}
59
59
60
60
/// <summary>
61
-
/// 获得/设置 是否显示关闭按钮 默认为 true
61
+
/// Gets or sets whether to show the close button, default is true
62
62
/// </summary>
63
63
publicboolShowCloseButton{get;set;}=true;
64
64
65
65
/// <summary>
66
-
/// 获得/设置 是否显示 Header 关闭按钮 默认为 true
66
+
/// Gets or sets whether to show the header close button, default is true
67
67
/// </summary>
68
68
publicboolShowHeaderCloseButton{get;set;}=true;
69
69
70
70
/// <summary>
71
-
/// 获得/设置 是否支持键盘 ESC 关闭当前弹窗 默认 true 支持
71
+
/// Gets or sets whether to support closing the dialog with the ESC key, default is true
72
72
/// </summary>
73
73
publicboolIsKeyboard{get;set;}=true;
74
74
75
75
/// <summary>
76
-
/// 获得/设置 是否支持点击遮罩关闭弹窗 默认 false
76
+
/// Gets or sets whether to support closing the dialog by clicking the backdrop, default is false
77
77
/// </summary>
78
78
publicboolIsBackdrop{get;set;}
79
79
80
80
/// <summary>
81
-
/// 获得/设置 是否显示 Footer 默认为 true
81
+
/// Gets or sets whether to show the footer, default is true
82
82
/// </summary>
83
83
publicboolShowFooter{get;set;}=true;
84
84
85
85
/// <summary>
86
-
/// 获得/设置 是否显示打印按钮 默认 false 不显示
86
+
/// Gets or sets whether to show the print button, default is false
87
87
/// </summary>
88
88
publicboolShowPrintButton{get;set;}
89
89
90
90
/// <summary>
91
-
/// 获得/设置 是否显示保存按钮 默认 false 不显示
91
+
/// Gets or sets whether to show the save button, default is false
92
92
/// </summary>
93
93
publicboolShowSaveButton{get;set;}
94
94
95
95
/// <summary>
96
-
/// 获得/设置 打印按钮是否显示在 Header 中 默认 false 不显示
96
+
/// Gets or sets whether to show the print button in the header, default is false
97
97
/// </summary>
98
98
publicboolShowPrintButtonInHeader{get;set;}
99
99
100
100
/// <summary>
101
-
/// 获得/设置 Header 中打印按钮显示文字 默认为资源文件中 打印
101
+
/// Gets or sets the text of the print button in the header, default is "Print" from the resource file
102
102
/// </summary>
103
103
publicstring?PrintButtonText{get;set;}
104
104
105
105
/// <summary>
106
-
/// 获得/设置 相关连数据,多用于传值使用
106
+
/// Gets or sets the related data, mostly used for passing values
107
107
/// </summary>
108
108
publicobject?BodyContext{get;set;}
109
109
110
110
/// <summary>
111
-
/// 获得/设置 ModalBody 组件
111
+
/// Gets or sets the ModalBody component
112
112
/// </summary>
113
113
publicRenderFragment?BodyTemplate{get;set;}
114
114
115
115
/// <summary>
116
-
/// 获得/设置 ModalFooter 组件
116
+
/// Gets or sets the ModalFooter component
117
117
/// </summary>
118
118
publicRenderFragment?FooterTemplate{get;set;}
119
119
120
120
/// <summary>
121
-
/// 获得/设置 ModalHeader 组件模板
121
+
/// Gets or sets the ModalHeader component template
122
122
/// </summary>
123
123
publicRenderFragment?HeaderTemplate{get;set;}
124
124
125
125
/// <summary>
126
-
/// 获得/设置 ModalHeader 组件自定义按钮
126
+
/// Gets or sets the custom buttons in the ModalHeader component
0 commit comments