CSLA.NET 5.4.2
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
Enums.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="Enums.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>The possible form actions.</summary>
7//-----------------------------------------------------------------------
8namespace Csla.Windows
9{
13 public enum CslaFormAction
14 {
18 None,
22 Save,
26 Cancel,
30 Close,
35 }
36
41 {
45 None,
53 AndNew
54 }
55}
CslaFormAction
The possible form actions.
Definition: Enums.cs:14
@ Validate
Display a message box with any broken rules
@ Close
Close the form.
PostSaveActionType
The possible actions for post save.
Definition: Enums.cs:41
@ AndClose
Also close the form.
@ AndNew
Also create a new object.