Beispiel #1
0
 public GaugeImage()
 {
     location = new GaugeLocation(this, 26f, 47f);
     size     = new GaugeSize(this, 15f, 15f);
     location.DefaultValues = true;
     size.DefaultValues     = true;
 }
 protected GaugeBase()
 {
     location = new GaugeLocation(this, 0f, 0f);
     size     = new GaugeSize(this, 100f, 100f);
     location.DefaultValues = true;
     size.DefaultValues     = true;
 }
Beispiel #3
0
 public GaugeLabel()
 {
     location = new GaugeLocation(this, 26f, 47f);
     size     = new GaugeSize(this, 12f, 6f);
     location.DefaultValues = true;
     size.DefaultValues     = true;
 }
 public Position(GaugeLocation location, GaugeSize size, ContentAlignment locationAlignment)
 {
     this.location          = location;
     this.size              = size;
     this.locationAlignment = locationAlignment;
 }