├── .gitignore ├── .hgignore ├── .hgtags ├── AGauge ├── AGauge - FxCop.FxCop ├── AGauge.Designer.cs ├── AGauge.bmp ├── AGauge.cs ├── AGauge.csproj ├── AGaugeLabel.cs ├── AGaugeLabelCollection.cs ├── AGaugeNeedleColor.cs ├── AGaugeRange.cs ├── AGaugeRangeCollection.cs ├── Categories.cs ├── NeedleType.cs ├── Properties │ └── AssemblyInfo.cs └── ValueInRangeChangedEventArgs.cs ├── AGaugeApp.zip ├── AGaugeApp ├── AGauge.Designer.cs ├── AGauge.cs ├── AGauge.sln ├── AGaugeApp.csproj ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── screenshot.bmp ├── AGaugeDemo ├── AGaugeDemo.csproj ├── AGaugeDemo.sln ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── MainFormTest.Designer.cs ├── MainFormTest.cs ├── MainFormTest.resx ├── Program.cs └── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── LICENSE ├── NuGet Package └── AGauge_V2.2.0.2.nupkg └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/.gitignore -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/.hgignore -------------------------------------------------------------------------------- /.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/.hgtags -------------------------------------------------------------------------------- /AGauge/AGauge - FxCop.FxCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGauge/AGauge - FxCop.FxCop -------------------------------------------------------------------------------- /AGauge/AGauge.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGauge/AGauge.Designer.cs -------------------------------------------------------------------------------- /AGauge/AGauge.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGauge/AGauge.bmp -------------------------------------------------------------------------------- /AGauge/AGauge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGauge/AGauge.cs -------------------------------------------------------------------------------- /AGauge/AGauge.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGauge/AGauge.csproj -------------------------------------------------------------------------------- /AGauge/AGaugeLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGauge/AGaugeLabel.cs -------------------------------------------------------------------------------- /AGauge/AGaugeLabelCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGauge/AGaugeLabelCollection.cs -------------------------------------------------------------------------------- /AGauge/AGaugeNeedleColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGauge/AGaugeNeedleColor.cs -------------------------------------------------------------------------------- /AGauge/AGaugeRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGauge/AGaugeRange.cs -------------------------------------------------------------------------------- /AGauge/AGaugeRangeCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGauge/AGaugeRangeCollection.cs -------------------------------------------------------------------------------- /AGauge/Categories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGauge/Categories.cs -------------------------------------------------------------------------------- /AGauge/NeedleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGauge/NeedleType.cs -------------------------------------------------------------------------------- /AGauge/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGauge/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AGauge/ValueInRangeChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGauge/ValueInRangeChangedEventArgs.cs -------------------------------------------------------------------------------- /AGaugeApp.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGaugeApp.zip -------------------------------------------------------------------------------- /AGaugeApp/AGauge.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGaugeApp/AGauge.Designer.cs -------------------------------------------------------------------------------- /AGaugeApp/AGauge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGaugeApp/AGauge.cs -------------------------------------------------------------------------------- /AGaugeApp/AGauge.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGaugeApp/AGauge.sln -------------------------------------------------------------------------------- /AGaugeApp/AGaugeApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGaugeApp/AGaugeApp.csproj -------------------------------------------------------------------------------- /AGaugeApp/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGaugeApp/Form1.Designer.cs -------------------------------------------------------------------------------- /AGaugeApp/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGaugeApp/Form1.cs -------------------------------------------------------------------------------- /AGaugeApp/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGaugeApp/Form1.resx -------------------------------------------------------------------------------- /AGaugeApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGaugeApp/Program.cs -------------------------------------------------------------------------------- /AGaugeApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGaugeApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AGaugeApp/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGaugeApp/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /AGaugeApp/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGaugeApp/Properties/Resources.resx -------------------------------------------------------------------------------- /AGaugeApp/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGaugeApp/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /AGaugeApp/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGaugeApp/Properties/Settings.settings -------------------------------------------------------------------------------- /AGaugeApp/screenshot.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGaugeApp/screenshot.bmp -------------------------------------------------------------------------------- /AGaugeDemo/AGaugeDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGaugeDemo/AGaugeDemo.csproj -------------------------------------------------------------------------------- /AGaugeDemo/AGaugeDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGaugeDemo/AGaugeDemo.sln -------------------------------------------------------------------------------- /AGaugeDemo/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGaugeDemo/MainForm.Designer.cs -------------------------------------------------------------------------------- /AGaugeDemo/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGaugeDemo/MainForm.cs -------------------------------------------------------------------------------- /AGaugeDemo/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGaugeDemo/MainForm.resx -------------------------------------------------------------------------------- /AGaugeDemo/MainFormTest.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGaugeDemo/MainFormTest.Designer.cs -------------------------------------------------------------------------------- /AGaugeDemo/MainFormTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGaugeDemo/MainFormTest.cs -------------------------------------------------------------------------------- /AGaugeDemo/MainFormTest.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGaugeDemo/MainFormTest.resx -------------------------------------------------------------------------------- /AGaugeDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGaugeDemo/Program.cs -------------------------------------------------------------------------------- /AGaugeDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGaugeDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AGaugeDemo/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGaugeDemo/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /AGaugeDemo/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGaugeDemo/Properties/Resources.resx -------------------------------------------------------------------------------- /AGaugeDemo/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGaugeDemo/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /AGaugeDemo/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/AGaugeDemo/Properties/Settings.settings -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/LICENSE -------------------------------------------------------------------------------- /NuGet Package/AGauge_V2.2.0.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/NuGet Package/AGauge_V2.2.0.2.nupkg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Artist/AGauge/HEAD/README.md --------------------------------------------------------------------------------