Removed console output from LevelMeter to view exception, added confirmation of all button pushes to MonoCatalog

This commit is contained in:
PJ Beaman 2012-01-31 15:21:09 -05:00
Родитель 45ba29407d
Коммит 87a0a4a8a8
2 изменённых файлов: 11 добавлений и 11 удалений

Просмотреть файл

@ -148,7 +148,7 @@ namespace avTouch
var thisTresh = ColorThresholds [color_i];
var nextTresh = ColorThresholds [color_i+1];
if (thisTresh.MaxValue <= lightMaxVal){
Console.WriteLine ("PICKED COLOR at {0}", color_i);
//Console.WriteLine ("PICKED COLOR at {0}", color_i);
lightColor = nextTresh.Color;
}
}
@ -162,7 +162,7 @@ namespace avTouch
ctx.FillRect (lightRect);
}
Console.WriteLine ("Got: {0} {1}", lightColor, UIColor.Red);
//Console.WriteLine ("Got: {0} {1}", lightColor, UIColor.Red);
//lightColor = UIColor.Red;
if (lightIntensity == 1){
lightColor.SetColor ();
@ -170,8 +170,8 @@ namespace avTouch
ctx.FillRect (lightRect);
} else if (lightIntensity > 0){
using (var clr = new CGColor (lightColor.CGColor, lightIntensity)){
ctx.SetFillColorWithColor (clr);
ctx.FillRect (lightRect);
ctx.SetFillColorWithColor (clr);
ctx.FillRect (lightRect);
}
}

Просмотреть файл

@ -141,7 +141,7 @@ namespace MonoCatalog
var background = UIImage.FromFile ("images/whiteButton.png");
var backgroundPressed = UIImage.FromFile ("images/blueButton.png");
var frame = new RectangleF (182f, 5f, 106f, 40f);
//button.TouchDown += delegate { Console.WriteLine ("The button has been touched"); };
return ButtonWithTitle ("Gray", frame, background, backgroundPressed, true);
}
@ -152,7 +152,7 @@ namespace MonoCatalog
var frame = new RectangleF (182f, 5f, 106f, 40f);
var button = ButtonWithTitle ("", frame, background, backgroundPressed, true);
button.TouchDown += delegate { Console.WriteLine ("The button has been touched"); };
button.SetImage (UIImage.FromFile ("images/UIButton_custom.png"), UIControlState.Normal);
return button;
}
@ -163,7 +163,7 @@ namespace MonoCatalog
button.Frame = new RectangleF (182f, 5f, 106f, 40f);
button.BackgroundColor = UIColor.Clear;
button.SetTitle ("Rounded", UIControlState.Normal);
button.TouchDown += delegate { Console.WriteLine ("The button has been touched"); };
button.Tag = kViewTag;
// To support reusable cells
return button;
@ -175,7 +175,7 @@ namespace MonoCatalog
button.Frame = new RectangleF (250f, 8f, 25f, 25f);
button.BackgroundColor = UIColor.Clear;
button.SetTitle ("Detail Disclosure", UIControlState.Normal);
button.TouchDown += delegate { Console.WriteLine ("The button has been touched"); };
button.Tag = kViewTag;
// To support reusable cells
return button;
@ -188,7 +188,7 @@ namespace MonoCatalog
button.Frame = new RectangleF (250, 8f, 25f, 25f);
button.BackgroundColor = UIColor.Clear;
button.SetTitle ("Detail Disclosure", UIControlState.Normal);
button.TouchDown += delegate { Console.WriteLine ("The button has been touched"); };
button.Tag = kViewTag;
// To support reusable cells
return button;
@ -200,7 +200,7 @@ namespace MonoCatalog
button.Frame = new RectangleF (250, 8f, 25f, 25f);
button.BackgroundColor = UIColor.Gray;
button.SetTitle ("Detail Disclosure", UIControlState.Normal);
button.TouchDown += delegate { Console.WriteLine ("The button has been touched"); };
button.Tag = kViewTag;
// To support reusable cells
return button;
@ -212,7 +212,7 @@ namespace MonoCatalog
button.Frame = new RectangleF (250, 8f, 25f, 25f);
button.BackgroundColor = UIColor.Clear;
button.SetTitle ("Detail Disclosure", UIControlState.Normal);
button.TouchDown += delegate { Console.WriteLine ("The button has been touched"); };
button.Tag = kViewTag;
// To support reusable cells
return button;