CPF/CPF.ReoGrid/WPF/ArrowBorder.cs
2024-06-24 10:15:59 +08:00

16 lines
220 B
C#

using System;
using CPF.Controls;
namespace CPF.ReoGrid.WPF
{
internal class ArrowBorder : Border
{
public ArrowBorder(SheetTabControl owner)
{
this.owner = owner;
}
private SheetTabControl owner;
}
}