Skip to content

Instantly share code, notes, and snippets.

View amaitland's full-sized avatar

Alex Maitland amaitland

  • Australia
View GitHub Profile
@amaitland
amaitland / FundingProposal.md
Last active January 3, 2018 07:40
Funding Proposal for CefSharp release

Funding Proposal for CefSharp 63.0.0 release

Update

I've created a Patreon page at https://www.patreon.com/amaitland

All details are outlined there, work is underway!

--

@emoacht
emoacht / app.manifest.xml
Last active April 26, 2022 16:13
Application manifest for Per Monitor V2
<application xmlns="urn:schemas-microsoft-com:asm.v3">
<windowsSettings>
<!-- Per Monitor V1 [OS >= Windows 8.1]
Values: False, True, Per-monitor, True/PM -->
<dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
true/PM</dpiAware>
<!-- Per Monitor V1 [OS >= Windows 10 Anniversary Update (1607, 10.0.14393, Redstone 1)]
Values: Unaware, System, PerMonitor -->
<!-- Per Monitor V2 [OS >= Windows 10 Creators Update (1703, 10.0.15063, Redstone 2)]
Value: PerMonitorV2 -->
@kip9000
kip9000 / Set Custom Cursor in a WPF Application
Created December 4, 2012 08:43
Set Custom Cursor in a WPF Application
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
Mouse.OverrideCursor = CreateCursor(50,50, Brushes.Gold, null);
}
Cursor CreateCursor(double rx, double ry, SolidColorBrush brush, Pen pen)