mirror of
https://mirror.ghproxy.com/https://github.com/dexyfex/CodeWalker
synced 2024-11-05 14:47:22 +08:00
27 lines
628 B
C#
27 lines
628 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace CodeWalker.WinForms
|
|
{
|
|
public partial class PropertyGridFix : PropertyGrid
|
|
{
|
|
public PropertyGridFix()
|
|
{
|
|
InitializeComponent();
|
|
LineColor = SystemColors.InactiveBorder; //makes it consistent across windows 10 versions........
|
|
}
|
|
|
|
protected override void OnPaint(PaintEventArgs pe)
|
|
{
|
|
base.OnPaint(pe);
|
|
}
|
|
}
|
|
}
|