This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Drawing; | |
using System.Drawing.Drawing2D; | |
using System.Drawing.Imaging; | |
using System.IO; | |
using System.Runtime.InteropServices; | |
using System.Text; | |
namespace ConsoleApplication2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using System.Text.RegularExpressions; | |
// Built from the code provided in this stackoverflow question: http://stackoverflow.com/questions/398518/how-to-implement-glob-in-c-sharp | |
namespace Utils.Common | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Provides DWM Color as a Bindable Property | |
* Add the Namespace | |
* xmlns:dwmAero="clr-namespace:MahApps.Metro.DWMAero" | |
* And a Resource | |
* <dwmAero:AeroColorProvider x:Key="AeroColorProvider" /> | |
* Then Bind on the Properties (110%,95%,80%,65%,50% Respectively) | |
* Color="{Binding Source={StaticResource AeroColorProvider}, Path=Highlight}" | |
* Color="{Binding Source={StaticResource AeroColorProvider}, Path=Accent}" | |
* Color="{Binding Source={StaticResource AeroColorProvider}, Path=Accent2}" |