16 lines
220 B
C#
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;
|
|
}
|
|
}
|