123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Xamarin.Forms;
- using Xamarin.Forms.Xaml;
- namespace comal.timesheets
- {
- [XamlCompilation(XamlCompilationOptions.Compile)]
- public partial class TextViewer : ContentPage
- {
- public TextViewer (string text)
- {
- InitializeComponent ();
- textLbl.Text = text;
- }
- }
- }
|