code image given below
the public class framedtextpage class is error
how can i solve this
- public class FramedTextPage : ContentPage
- {
- public FramedTextPage()
- {
- Padding = new Thickness(20);
- Content = new Frame
- {
- OutlineColor = Color.Accent,
- HorizontalOptions = LayoutOptions.Center,
- VerticalOptions = LayoutOptions.Center,
- Content = new Label
- {
- Text = "I've been framed!",
- FontSize = Device.GetNamedSize(NamedSize.Large, typeof(Label))
- }
- };
- }
- }
- >

arvind baldaniyaPosted Apr 5, 2017, 6:34 AM