mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-04-08 10:16:36 +08:00
16 lines
388 B
C#
16 lines
388 B
C#
using System;
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using System.Windows.Media.Animation;
|
|
|
|
namespace Dragablz
|
|
{
|
|
public class HorizontalOrganiser : StackOrganiser
|
|
{
|
|
public HorizontalOrganiser() : base(Orientation.Horizontal)
|
|
{ }
|
|
|
|
public HorizontalOrganiser(double itemOffset) : base(Orientation.Horizontal, itemOffset)
|
|
{ }
|
|
}
|
|
} |