CPF/CPF.ReoGrid/WPF/ArrowBorder.cs

16 lines
220 B
C#
Raw Normal View History

2024-06-24 10:15:59 +08:00
using System;
using CPF.Controls;
namespace CPF.ReoGrid.WPF
{
internal class ArrowBorder : Border
{
public ArrowBorder(SheetTabControl owner)
{
this.owner = owner;
}
private SheetTabControl owner;
}
}