Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using Android.App;
- using Android.Content;
- using Android.OS;
- using Android.Runtime;
- using Android.Views;
- using Android.Widget;
- using Android.Util;
- namespace Mobile
- {
- class FormShortText : LinearLayout, FormItem
- {
- private void inflateLayout (Context context)
- {
- LayoutInflater inflator = (LayoutInflater) context.GetSystemService(Context.LayoutInflaterService);
- inflator.Inflate(Resource.Layout.form_shorttext, null);
- }
- public FormShortText (Context context) : base(context)
- {
- inflateLayout(context);
- }
- public FormShortText (Context context, IAttributeSet attrs) : base (context, attrs)
- {
- inflateLayout(context);
- }
- public string MappingPath {
- get;
- set;
- }
- // public FormInstructionalText (Context context, IAttributeSet attrs) : base (context, attrs)
- // {
- // }
- //
- // public FormInstructionalText (Context context, IAttributeSet attrs, int defStyle) : base (context, attrs, defStyle)
- // {
- // }
- //
- // protected override void OnDraw (Android.Graphics.Canvas canvas)
- // {
- // base.OnDraw (canvas);
- //
- // }
- // public string MappingPath {
- // get ;
- // set ;
- // }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement