1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using Xamarin.Forms;
- namespace comal.timesheets
- {
- public class ViewCellFrame : Frame
- {
- public ViewCellFrame ()
- {
- Padding = 1;
- Margin = 1;
- BorderColor = Color.DimGray;
- CornerRadius = 5;
- }
- }
- }
|