Skip to content

Instantly share code, notes, and snippets.

@AEAEAEAE4343
AEAEAEAE4343 / SystemContextMenu.cs
Created February 11, 2021 09:23
System themed context menu for .NET Core and .NET 5.0 based Windows Forms applications
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Runtime.InteropServices;
namespace System.Windows.Forms
{
[Flags]
public enum SystemContextMenuItemFlags : uint
{
@AEAEAEAE4343
AEAEAEAE4343 / ColorSchemeStruct.cs
Last active May 10, 2021 22:18
Windows color schemes registry reverse-engineered into a C# class
public class ColorScheme
{
[StructLayout(LayoutKind.Explicit, Size = 712, Pack = 1)]
private struct ColorSchemeStruct
{
[FieldOffset(8)]
public byte WindowBorderSize;
[FieldOffset(12)]
public byte ScrollBarSize1;
[FieldOffset(16)]