public InputPopupStyle()
 {
     TitleLabelStyle      = new SheetLabelStyle();
     BodyLabelStyle       = new SheetLabelStyle();
     EntryStyle           = new SheetEntryStyle();
     PrimaryButtonStyle   = new SheetButtonStyle();
     SecondaryButtonStyle = new SheetButtonStyle();
 }
Exemple #2
0
        protected Entry CreateEntry(SheetEntryStyle style, InputOptions inputOptions)
        {
            var button = new Entry()
            {
                Placeholder = inputOptions.Placeholder
            };

            style.ApplyTo(button);
            return(button);
        }