ViewCellFrame.cs 302 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using Xamarin.Forms;
  6. namespace comal.timesheets
  7. {
  8. public class ViewCellFrame : Frame
  9. {
  10. public ViewCellFrame ()
  11. {
  12. Padding = 1;
  13. Margin = 1;
  14. BorderColor = Color.DimGray;
  15. CornerRadius = 5;
  16. }
  17. }
  18. }