mirror of
https://mirror.ghproxy.com/https://github.com/dexyfex/CodeWalker
synced 2026-05-14 04:34:47 +08:00
R26_dev8 - First public commit
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user