mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-04-05 16:56:34 +08:00
11 lines
205 B
C#
11 lines
205 B
C#
using System.Windows.Controls;
|
|
|
|
namespace Dragablz
|
|
{
|
|
public class VerticalOrganiser : StackOrganiser
|
|
{
|
|
public VerticalOrganiser() : base(Orientation.Vertical)
|
|
{
|
|
}
|
|
}
|
|
} |