You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
569 B
C#

9 months ago
using DevComponents.DotNetBar.Controls;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
namespace JwKdsV.Component
{
public class FlyoutX : Flyout
{
public FlyoutX()
{
this.BorderColor = Color.FromArgb(101, 147, 207);
}
public override void Show(Rectangle screenFlyoutBounds, ePointerSide pointerSide, int pointerOffset, object targetItem)
{
base.Show(screenFlyoutBounds, pointerSide, pointerOffset, targetItem);
}
}
}