执行Action前显示确认窗口

来源:互联网 发布:php mysql集成环境 编辑:程序博客网 时间:2024/06/06 05:18

Specify Action Settings

  • Navigate to the Misc category. By default, the Tooltip property is set to theCaption property's value. Set the "Clear the current object's fields" value instead. Set theShortcut property to "Control+C", to specify a shortcut for the Action. Note that the specified shortcut will be displayed together with theTooltip property value in the Action's tooltip. By default, theConfirmationMessage property is set to the Action's ActionBase.ConfirmationMessage property value, which is specified in code. Replace this value with the "Do you really need to clear the {0} object's fields?". The "{0}" format item will be substituted with the object's default property value. A property can be specified as default via theDefaultProperty property of theBOModel |Class node in the Model Editor. Alternatively, theDefaultProperty attribute can be applied to the property's business class declaration.


  • The current object identifier will be inserted into the confirmation message if the Action'sSelectionDependencyType property is not set to "Independent". So, assign the "RequireSingleObject" value to theSelectionDependencyType property. This property belongs to the Behavior category.


    • Run the application (whether Windows Forms or ASP.NET). Invoke a detail form object. Check that theClear Fields has the required tooltip, can be executed via the specified shortcut, and the confirmation message with the specified text will be invoked. 



0 0