| 12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using InABox.Mobile;
- using Xamarin.Forms;
- using Xamarin.Forms.Xaml;
- namespace PRS.Mobile
- {
- [XamlCompilation(XamlCompilationOptions.Compile)]
- public partial class FrameScannerImages
- {
- public FrameScannerImages()
- {
- InitializeComponent();
- }
- public override void Refresh()
- {
- }
- private void Document_Clicked(object sender, MobileButtonClickEventArgs args)
- {
- }
- }
- }
|