Example #1
0
        public SvgManipulatePhotoPage(byte[] image)
        {
            if (image != null)
            {
                BindingContext = new ManipulatePhotoViewModel(image);
            }

            NavigationPage.SetHasNavigationBar(this, false);

            LoadResources();
            SetupUI();
            SetUpEvents();
        }
Example #2
0
 public ManipulatePhotoPage(byte[] image)
 {
     BindingContext = new ManipulatePhotoViewModel(image);
     SetUpUi();
     SetUpEvents();
 }