mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-04-03 15:46:36 +08:00
16 lines
285 B
C#
16 lines
285 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Text;
|
|
|
|
namespace Util.DiagramDesigner
|
|
{
|
|
public enum PageSizeOrientation
|
|
{
|
|
[Description("竖向")]
|
|
Vertical,
|
|
[Description("横向")]
|
|
Horizontal,
|
|
}
|
|
}
|