Improving print history display
This commit is contained in:
parent
74f20132b4
commit
50041b2142
4 changed files with 16 additions and 7 deletions
|
|
@ -35,17 +35,19 @@ using MatterHackers.DataConverters3D;
|
|||
|
||||
namespace MatterHackers.MatterControl.Library
|
||||
{
|
||||
[Flags]
|
||||
public enum SortKey
|
||||
{
|
||||
Default,
|
||||
Name,
|
||||
CreatedDate,
|
||||
ModifiedDate,
|
||||
Default = 0,
|
||||
Name = 1,
|
||||
CreatedDate = 2,
|
||||
ModifiedDate = 4,
|
||||
}
|
||||
|
||||
public class SortBehavior
|
||||
{
|
||||
public SortKey SortKey { get; set; }
|
||||
|
||||
public bool Ascending { get; set; }
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue