Exemplo n.º 1
0
 public ScheduleAppointmentEditor(Context context, SfSchedule _schedule)
 {
     mContext     = context;
     sfSchedule   = _schedule;
     density      = mContext.Resources.DisplayMetrics;
     EditorLayout = new TableLayout(context);
     EditorLayout.SetBackgroundColor(Color.White);
     EditorLayout.StretchAllColumns = true;
     EditorLayout.SetPaddingRelative(30, 30, 30, 30);
     EditorLayout.LayoutParameters = new ViewGroup.LayoutParams((density.WidthPixels), (density.HeightPixels));
     AddInputControls();
 }