1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Xamarin.Forms.Xaml;
- namespace InABox.Mobile
- {
- [XamlCompilation(XamlCompilationOptions.Compile)]
- public partial class BaseMobileView
- {
- protected BaseMobileView()
- {
- InitializeComponent();
-
- }
- private void BaseMobileView_OnBindingContextChanged(object sender, EventArgs e)
- {
- DoBindingContextChanged();
- }
- protected virtual void DoBindingContextChanged()
- {
-
- }
- }
- }
|