MonoTouch.Dialog.RefreshTableHeaderView.Draw C# (CSharp) 메소드

Draw() 공개 메소드

public Draw ( RectangleF rect ) : void
rect System.Drawing.RectangleF
리턴 void
		public override void Draw (RectangleF rect)
		{
			var context = UIGraphics.GetCurrentContext ();
			context.DrawPath (CGPathDrawingMode.FillStroke);
			statusLabel.TextColor.SetStroke ();
			context.BeginPath ();
			context.MoveTo (0, Bounds.Height-1);
			context.AddLineToPoint (Bounds.Width, Bounds.Height-1);
			context.StrokePath ();

			context.BeginPath ();
			context.MoveTo (0, 0);
			context.AddLineToPoint (Bounds.Width, 0);
			context.StrokePath ();
		}